@camstack/addon-post-analysis 1.1.32 → 1.1.34

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.
@@ -1,4 +1,4 @@
1
- //#region ../types/dist/event-category-H4AVePnn.mjs
1
+ //#region ../types/dist/event-category-D4HJq7Mw.mjs
2
2
  var EventCategory = /* @__PURE__ */ function(EventCategory) {
3
3
  EventCategory["SystemBoot"] = "system.boot";
4
4
  EventCategory["SystemAddonsReady"] = "system.addons-ready";
@@ -151,6 +151,11 @@ var EventCategory = /* @__PURE__ */ function(EventCategory) {
151
151
  /** Runner-sampled scrub thumbnail (~1/5 s/camera). Telemetry (D8): a lost
152
152
  * thumb is a scrub gap the recorder's keyframe backfill covers. */
153
153
  EventCategory["RecordingThumbSampled"] = "recording.thumb-sampled";
154
+ /** Export render progress (0–100). Telemetry (D8): a lost tick is a stale
155
+ * progress bar the client reconciles via `recordingExport.getExport`. */
156
+ EventCategory["RecordingExportProgress"] = "recording.export.progress";
157
+ EventCategory["RecordingExportCompleted"] = "recording.export.completed";
158
+ EventCategory["RecordingExportFailed"] = "recording.export.failed";
154
159
  EventCategory["DetectionEvent"] = "detection.event";
155
160
  EventCategory["SessionTrackNew"] = "session.track.new";
156
161
  EventCategory["SessionTrackExpired"] = "session.track.expired";
@@ -440,6 +445,25 @@ var EventCategory = /* @__PURE__ */ function(EventCategory) {
440
445
  */
441
446
  EventCategory["PipelineAnalyticsStationaryChanged"] = "pipeline-analytics.stationary-changed";
442
447
  /**
448
+ * Fired by `addon-post-analysis` when a package-drop is confirmed inside
449
+ * a package zone — a newly-appeared stationary object of a package class
450
+ * that cleared the class / zone / dwell / size gates. Payload:
451
+ * `PipelineAnalyticsPackageDeliveredPayload` carrying `{ deviceId,
452
+ * entryId, className, zoneIds, keyFrameMediaKey?, bbox, timestamp }`.
453
+ * Telemetry (D8): the durable record is the `package-events` store row;
454
+ * this bus topic drives notifier rules + live UI. See
455
+ * docs/superpowers/specs/2026-07-17-package-zones-design.md §5.1.
456
+ */
457
+ EventCategory["PipelineAnalyticsPackageDelivered"] = "pipeline-analytics.package-delivered";
458
+ /**
459
+ * Fired by `addon-post-analysis` when a previously-delivered package
460
+ * leaves its zone (the stationary entry departed — moved or swept).
461
+ * Payload: `PipelineAnalyticsPackagePickedUpPayload` carrying
462
+ * `{ deviceId, entryId, deliveredEventId, className, timestamp }`.
463
+ * Telemetry (D8). See package-zones-design §5.2.
464
+ */
465
+ EventCategory["PipelineAnalyticsPackagePickedUp"] = "pipeline-analytics.package-picked-up";
466
+ /**
443
467
  * Fired by `addon-post-analysis` whenever a gallery face row changes:
444
468
  * `kind:'buffered'` a new detected face was persisted, `'assigned'` /
445
469
  * `'unassigned'` its identity link changed, `'deleted'` the row was
@@ -5178,6 +5202,25 @@ function _instanceof(cls, params = {}) {
5178
5202
  };
5179
5203
  return inst;
5180
5204
  }
5205
+ //#endregion
5206
+ //#region ../../node_modules/zod/v4/classic/compat.js
5207
+ /** @deprecated Use the raw string literal codes instead, e.g. "invalid_type". */
5208
+ var ZodIssueCode = {
5209
+ invalid_type: "invalid_type",
5210
+ too_big: "too_big",
5211
+ too_small: "too_small",
5212
+ invalid_format: "invalid_format",
5213
+ not_multiple_of: "not_multiple_of",
5214
+ unrecognized_keys: "unrecognized_keys",
5215
+ invalid_union: "invalid_union",
5216
+ invalid_key: "invalid_key",
5217
+ invalid_element: "invalid_element",
5218
+ invalid_value: "invalid_value",
5219
+ custom: "custom"
5220
+ };
5221
+ /** @deprecated Do not use. Stub definition, only included for zod-to-json-schema compatibility. */
5222
+ var ZodFirstPartyTypeKind;
5223
+ ZodFirstPartyTypeKind || (ZodFirstPartyTypeKind = {});
5181
5224
  Object.fromEntries([
5182
5225
  {
5183
5226
  id: "overview",
@@ -7315,6 +7358,62 @@ var RecordingConfigSchema = object({
7315
7358
  scrubThumbnails: ScrubThumbnailPresetSchema.optional()
7316
7359
  });
7317
7360
  /**
7361
+ * Ops-log — the durable, append-only operations audit shared by the
7362
+ * recordings and events management surfaces.
7363
+ *
7364
+ * ONE row shape is reused for both domains so a single "Activity" view can
7365
+ * merge the recorder's DurableState ring (recordings ops-log) and the
7366
+ * pipeline-analytics SQLite collection (events ops-log). Each row records a
7367
+ * management operation, WHY it ran (reason), and its measurable effect
7368
+ * (itemsAffected + bytesReclaimed). Writes are best-effort — a failed log must
7369
+ * never fail the operation it records.
7370
+ */
7371
+ /** Which management domain the operation belongs to. */
7372
+ var OpsLogDomainSchema = _enum(["recording", "events"]);
7373
+ /** The kind of management operation performed. */
7374
+ var OpsLogOpSchema = _enum([
7375
+ "prune",
7376
+ "manual-delete",
7377
+ "rescan",
7378
+ "retention-run"
7379
+ ]);
7380
+ /** Why the operation ran. */
7381
+ var OpsLogReasonSchema = _enum([
7382
+ "retention",
7383
+ "quota",
7384
+ "manual",
7385
+ "operator"
7386
+ ]);
7387
+ /** One audit row, shared verbatim by both domains. */
7388
+ var OpsLogEntrySchema = object({
7389
+ /** Unique row id. */
7390
+ id: string(),
7391
+ /** Epoch ms the operation completed. */
7392
+ at: number(),
7393
+ domain: OpsLogDomainSchema,
7394
+ op: OpsLogOpSchema,
7395
+ reason: OpsLogReasonSchema,
7396
+ /** The camera the op targeted; null for a cluster/global op. */
7397
+ deviceId: number().nullable(),
7398
+ /** Node that performed the op (the log carries nodeId — no cross-node aggregation). */
7399
+ nodeId: string(),
7400
+ /** Buckets / rows deleted (op-specific unit). */
7401
+ itemsAffected: number(),
7402
+ /** Bytes reclaimed by the op (0 when not measurable). */
7403
+ bytesReclaimed: number(),
7404
+ /** Free-text detail (e.g. "floor moved to <ts>"); null when none. */
7405
+ detail: string().nullable(),
7406
+ /** Who/what triggered the op. */
7407
+ actor: string()
7408
+ });
7409
+ /** Shared query input for the per-domain `listOpsLog` cap methods. */
7410
+ var OpsLogQueryInputSchema = object({
7411
+ /** Restrict to a single camera; omit for every row. */
7412
+ deviceId: number().optional(),
7413
+ /** Max rows returned, newest-first. */
7414
+ limit: number().int().min(1).max(1e3).optional()
7415
+ });
7416
+ /**
7318
7417
  * `StorageLocationType` — an addon-declared id that identifies the *kind* of
7319
7418
  * storage a location serves. Defined here (not in `capabilities/storage.cap.ts`)
7320
7419
  * so the persisted record schema and the consumer-facing cap can both consume it
@@ -12689,7 +12788,11 @@ array(ZoneRuleSchema).readonly();
12689
12788
  * Extend the enum here when a new gating consumer comes online (audio
12690
12789
  * gating, alert filtering, …) — no other surface needs to change.
12691
12790
  */
12692
- var ZoneRuleStageEnum = _enum(["motion", "detection"]);
12791
+ var ZoneRuleStageEnum = _enum([
12792
+ "motion",
12793
+ "detection",
12794
+ "package"
12795
+ ]);
12693
12796
  DeviceType.Camera, method(object({
12694
12797
  deviceId: number(),
12695
12798
  stage: ZoneRuleStageEnum
@@ -12702,7 +12805,8 @@ DeviceType.Camera, method(object({
12702
12805
  auth: "admin"
12703
12806
  }), object({
12704
12807
  motion: array(ZoneRuleSchema).readonly(),
12705
- detection: array(ZoneRuleSchema).readonly()
12808
+ detection: array(ZoneRuleSchema).readonly(),
12809
+ package: array(ZoneRuleSchema).readonly()
12706
12810
  });
12707
12811
  var ProviderStatusSchema = object({
12708
12812
  connected: boolean(),
@@ -15901,6 +16005,7 @@ var EventKindIconSchema = _enum([
15901
16005
  "smoke",
15902
16006
  "water",
15903
16007
  "button",
16008
+ "package",
15904
16009
  "generic"
15905
16010
  ]);
15906
16011
  var EventKindCategorySchema = _enum([
@@ -15908,7 +16013,8 @@ var EventKindCategorySchema = _enum([
15908
16013
  "audio",
15909
16014
  "detection",
15910
16015
  "sensor",
15911
- "custom"
16016
+ "custom",
16017
+ "package"
15912
16018
  ]);
15913
16019
  var EventKindDescriptorSchema = object({
15914
16020
  /** Stable kind id (e.g. 'motion', 'person', 'contact'). */
@@ -16249,6 +16355,26 @@ var TrackCascadeCountsSchema = object({
16249
16355
  /** Per-track CLIP search vectors removed (best-effort). */
16250
16356
  embeddings: number().int()
16251
16357
  });
16358
+ /** Event-store footprint for one camera. */
16359
+ var EventStoreDeviceFootprintSchema = object({
16360
+ deviceId: number(),
16361
+ /** Persisted event rows (motion + object + audio) for the camera. */
16362
+ rows: number().int(),
16363
+ /** Event-owned media bytes on disk for the camera. */
16364
+ bytes: number().int()
16365
+ });
16366
+ /** Aggregate event-store footprint: global totals + per-camera breakdown. */
16367
+ var EventStoreFootprintSchema = object({
16368
+ totalRows: number().int(),
16369
+ totalBytes: number().int(),
16370
+ devices: array(EventStoreDeviceFootprintSchema).readonly()
16371
+ });
16372
+ /** Per-kind counts returned by the event-prune / device-delete mutations. */
16373
+ var EventPruneCountsSchema = object({
16374
+ motion: number().int(),
16375
+ object: number().int(),
16376
+ audio: number().int()
16377
+ });
16252
16378
  var pipelineAnalyticsCapability = {
16253
16379
  name: "pipeline-analytics",
16254
16380
  scope: "device",
@@ -16410,6 +16536,45 @@ var pipelineAnalyticsCapability = {
16410
16536
  kind: "mutation",
16411
16537
  auth: "admin"
16412
16538
  }),
16539
+ /**
16540
+ * Durable event-store footprint for the management UI: event rows
16541
+ * (motion + object + audio) counted per camera + total, plus the
16542
+ * event-owned media bytes on disk per camera + total. Stat/count-based,
16543
+ * computed on demand.
16544
+ */
16545
+ getEventStoreFootprint: method(object({}), EventStoreFootprintSchema, {
16546
+ kind: "query",
16547
+ auth: "admin"
16548
+ }),
16549
+ /**
16550
+ * Cluster-wide prune of events older than `olderThanMs` (exclusive) across
16551
+ * every camera, deleting each event's media in lockstep. Logged to the
16552
+ * events ops-log with `reason` (default `'retention'`). Returns the summed
16553
+ * per-kind deleted counts.
16554
+ */
16555
+ pruneEvents: method(object({
16556
+ olderThanMs: number(),
16557
+ reason: OpsLogReasonSchema.optional()
16558
+ }), EventPruneCountsSchema, {
16559
+ kind: "mutation",
16560
+ auth: "admin"
16561
+ }),
16562
+ /**
16563
+ * Manually delete EVERY event (motion + object + audio) for one camera and
16564
+ * its event-owned media in lockstep. Logged to the events ops-log as
16565
+ * `op:'manual-delete', reason:'manual'`. Destructive — the admin UI guards
16566
+ * it behind a confirm.
16567
+ */
16568
+ deleteDeviceEvents: method(object({ deviceId: number() }), EventPruneCountsSchema, {
16569
+ kind: "mutation",
16570
+ auth: "admin"
16571
+ }),
16572
+ /** The events ops-log rows (newest-first), optionally scoped to one camera.
16573
+ * Backed by a declared pipeline-analytics SQLite collection. */
16574
+ listOpsLog: method(OpsLogQueryInputSchema, array(OpsLogEntrySchema).readonly(), {
16575
+ kind: "query",
16576
+ auth: "admin"
16577
+ }),
16413
16578
  getEventMedia: method(object({
16414
16579
  eventId: string(),
16415
16580
  kind: MediaFileKindEnum.optional()
@@ -19790,13 +19955,131 @@ method(object({
19790
19955
  }), method(object({ deviceId: number() }), RecordingStatusSchema, {
19791
19956
  kind: "mutation",
19792
19957
  auth: "admin"
19793
- }), method(object({ deviceId: number() }), object({
19958
+ }), method(object({
19959
+ deviceId: number(),
19960
+ reason: OpsLogReasonSchema.optional()
19961
+ }), object({
19794
19962
  floorMs: number().nullable(),
19795
19963
  deletedBuckets: number().int(),
19796
19964
  reclaimedBytes: number().int()
19797
19965
  }), {
19798
19966
  kind: "mutation",
19799
19967
  auth: "admin"
19968
+ }), method(object({
19969
+ deviceId: number(),
19970
+ fromMs: number().optional(),
19971
+ toMs: number().optional()
19972
+ }), object({
19973
+ deletedBuckets: number().int(),
19974
+ reclaimedBytes: number().int()
19975
+ }), {
19976
+ kind: "mutation",
19977
+ auth: "admin"
19978
+ }), method(OpsLogQueryInputSchema, array(OpsLogEntrySchema).readonly(), {
19979
+ kind: "query",
19980
+ auth: "admin"
19981
+ });
19982
+ /**
19983
+ * `recordingExport` cap — render a footage time range into a single downloadable
19984
+ * MP4 (regular / accelerated / decelerated / timelapse, ± audio), kept for a
19985
+ * bounded lifetime with a durable history, auto-expiry, and optional
19986
+ * delete-after-download.
19987
+ *
19988
+ * Like `recording` this is a `scope:'system', mode:'singleton'` cap: the
19989
+ * recorder self-gates so exactly ONE node (the designated `recordingNodeId`,
19990
+ * default `hub`) registers it. Device-scoped methods carry `deviceId` in their
19991
+ * input and dispatch to that single provider; the render runs on the node that
19992
+ * owns the footage (no cross-node segment transfer). Download rides the
19993
+ * framework addon data-plane. State persists in a DurableState blob (NOT
19994
+ * SQLite); history rows survive file deletion for audit.
19995
+ */
19996
+ /** Playback-speed multiplier for the render (1 = realtime). */
19997
+ var ExportSpeedSchema = number().min(.25).max(32);
19998
+ /** Timelapse cadence — sample one source frame per `everyMs`, output at `outputFps`. */
19999
+ var ExportTimelapseSchema = object({
20000
+ everyMs: number().int().positive(),
20001
+ outputFps: number().int().min(1).max(60).optional()
20002
+ });
20003
+ /**
20004
+ * Render options. `speed` and `timelapse` are mutually exclusive. `includeAudio`
20005
+ * is honoured only for a realtime-ish speed (0.5–2×); timelapse is always
20006
+ * silent. `maxLifeMs` bounds how long the finished file is kept;
20007
+ * `deleteAfterDownload` removes it shortly after the first complete download.
20008
+ */
20009
+ var ExportOptionsSchema = object({
20010
+ speed: ExportSpeedSchema.optional(),
20011
+ timelapse: ExportTimelapseSchema.optional(),
20012
+ includeAudio: boolean(),
20013
+ maxLifeMs: number().int().positive(),
20014
+ deleteAfterDownload: boolean(),
20015
+ title: string().max(200).optional()
20016
+ }).superRefine((v, ctx) => {
20017
+ if (v.speed !== void 0 && v.timelapse !== void 0) ctx.addIssue({
20018
+ code: ZodIssueCode.custom,
20019
+ message: "speed and timelapse are mutually exclusive",
20020
+ path: ["timelapse"]
20021
+ });
20022
+ });
20023
+ var ExportStateSchema = _enum([
20024
+ "queued",
20025
+ "rendering",
20026
+ "ready",
20027
+ "failed",
20028
+ "expired",
20029
+ "deleted"
20030
+ ]);
20031
+ /** One export job / history row. */
20032
+ var ExportRecordSchema = object({
20033
+ id: string(),
20034
+ deviceId: number(),
20035
+ profile: string(),
20036
+ fromMs: number(),
20037
+ toMs: number(),
20038
+ options: ExportOptionsSchema,
20039
+ state: ExportStateSchema,
20040
+ /** 0–100 while rendering; null otherwise. */
20041
+ progressPct: number().nullable(),
20042
+ /** File size once ready; null before. */
20043
+ fileBytes: number().nullable(),
20044
+ expiresAt: number(),
20045
+ deleteAfterDownload: boolean(),
20046
+ /** Epoch of the first complete download; null until then. */
20047
+ downloadedAt: number().nullable(),
20048
+ createdAt: number(),
20049
+ /** User id/name that requested the export. */
20050
+ createdBy: string(),
20051
+ /** Failure reason when state is 'failed'; null otherwise. */
20052
+ error: string().nullable()
20053
+ });
20054
+ /** Candidate download URLs (LAN first, then operator extra hosts). */
20055
+ var ExportDownloadSchema = object({
20056
+ url: string(),
20057
+ endpoints: array(string())
20058
+ });
20059
+ method(object({
20060
+ deviceId: number(),
20061
+ profile: string(),
20062
+ fromMs: number(),
20063
+ toMs: number(),
20064
+ options: ExportOptionsSchema
20065
+ }), ExportRecordSchema, {
20066
+ kind: "mutation",
20067
+ auth: "protected"
20068
+ }), method(object({ deviceId: number().optional() }), array(ExportRecordSchema), {
20069
+ kind: "query",
20070
+ auth: "protected"
20071
+ }), method(object({ exportId: string() }), ExportRecordSchema, {
20072
+ kind: "query",
20073
+ auth: "protected"
20074
+ }), method(object({ exportId: string() }), ExportRecordSchema, {
20075
+ kind: "mutation",
20076
+ auth: "protected"
20077
+ }), method(object({ exportId: string() }), ExportRecordSchema, {
20078
+ kind: "mutation",
20079
+ auth: "protected"
20080
+ }), method(object({ exportId: string() }), ExportDownloadSchema, {
20081
+ kind: "query",
20082
+ auth: "protected"
19800
20083
  });
19801
20084
  /**
19802
20085
  * One publishable camera stream as its OWNING PROVIDER describes it — the same
@@ -22816,6 +23099,12 @@ Object.freeze({
22816
23099
  addonId: null,
22817
23100
  access: "delete"
22818
23101
  },
23102
+ "pipelineAnalytics.deleteDeviceEvents": {
23103
+ capName: "pipeline-analytics",
23104
+ capScope: "device",
23105
+ addonId: null,
23106
+ access: "delete"
23107
+ },
22819
23108
  "pipelineAnalytics.deleteTracks": {
22820
23109
  capName: "pipeline-analytics",
22821
23110
  capScope: "device",
@@ -22846,6 +23135,12 @@ Object.freeze({
22846
23135
  addonId: null,
22847
23136
  access: "view"
22848
23137
  },
23138
+ "pipelineAnalytics.getEventStoreFootprint": {
23139
+ capName: "pipeline-analytics",
23140
+ capScope: "device",
23141
+ addonId: null,
23142
+ access: "view"
23143
+ },
22849
23144
  "pipelineAnalytics.getKeyEvents": {
22850
23145
  capName: "pipeline-analytics",
22851
23146
  capScope: "device",
@@ -22888,6 +23183,12 @@ Object.freeze({
22888
23183
  addonId: null,
22889
23184
  access: "view"
22890
23185
  },
23186
+ "pipelineAnalytics.listOpsLog": {
23187
+ capName: "pipeline-analytics",
23188
+ capScope: "device",
23189
+ addonId: null,
23190
+ access: "view"
23191
+ },
22891
23192
  "pipelineAnalytics.listRecentTracks": {
22892
23193
  capName: "pipeline-analytics",
22893
23194
  capScope: "device",
@@ -22900,6 +23201,12 @@ Object.freeze({
22900
23201
  addonId: null,
22901
23202
  access: "view"
22902
23203
  },
23204
+ "pipelineAnalytics.pruneEvents": {
23205
+ capName: "pipeline-analytics",
23206
+ capScope: "device",
23207
+ addonId: null,
23208
+ access: "create"
23209
+ },
22903
23210
  "pipelineAnalytics.pruneEventsBefore": {
22904
23211
  capName: "pipeline-analytics",
22905
23212
  capScope: "device",
@@ -23662,6 +23969,12 @@ Object.freeze({
23662
23969
  addonId: null,
23663
23970
  access: "create"
23664
23971
  },
23972
+ "recording.deleteFootprint": {
23973
+ capName: "recording",
23974
+ capScope: "system",
23975
+ addonId: null,
23976
+ access: "delete"
23977
+ },
23665
23978
  "recording.getAvailability": {
23666
23979
  capName: "recording",
23667
23980
  capScope: "system",
@@ -23692,6 +24005,12 @@ Object.freeze({
23692
24005
  addonId: null,
23693
24006
  access: "view"
23694
24007
  },
24008
+ "recording.listOpsLog": {
24009
+ capName: "recording",
24010
+ capScope: "system",
24011
+ addonId: null,
24012
+ access: "view"
24013
+ },
23695
24014
  "recording.locateSegment": {
23696
24015
  capName: "recording",
23697
24016
  capScope: "system",
@@ -23722,6 +24041,42 @@ Object.freeze({
23722
24041
  addonId: null,
23723
24042
  access: "create"
23724
24043
  },
24044
+ "recordingExport.cancelExport": {
24045
+ capName: "recordingExport",
24046
+ capScope: "system",
24047
+ addonId: null,
24048
+ access: "create"
24049
+ },
24050
+ "recordingExport.createExport": {
24051
+ capName: "recordingExport",
24052
+ capScope: "system",
24053
+ addonId: null,
24054
+ access: "create"
24055
+ },
24056
+ "recordingExport.deleteExport": {
24057
+ capName: "recordingExport",
24058
+ capScope: "system",
24059
+ addonId: null,
24060
+ access: "delete"
24061
+ },
24062
+ "recordingExport.getDownloadUrl": {
24063
+ capName: "recordingExport",
24064
+ capScope: "system",
24065
+ addonId: null,
24066
+ access: "view"
24067
+ },
24068
+ "recordingExport.getExport": {
24069
+ capName: "recordingExport",
24070
+ capScope: "system",
24071
+ addonId: null,
24072
+ access: "view"
24073
+ },
24074
+ "recordingExport.listExports": {
24075
+ capName: "recordingExport",
24076
+ capScope: "system",
24077
+ addonId: null,
24078
+ access: "view"
24079
+ },
23725
24080
  "sceneMonitor.captureReference": {
23726
24081
  capName: "scene-monitor",
23727
24082
  capScope: "device",
@@ -24881,4 +25236,4 @@ object({
24881
25236
  schemaVersion: literal(1)
24882
25237
  });
24883
25238
  //#endregion
24884
- export { EventCategory as C, string as S, createEvent as _, cosineSimilarity as a, number as b, hfModelUrl as c, plateGalleryCapability as d, videoclipsCapability as f, DeviceType as g, BaseAddon as h, audioMetricsCapability as i, nodePin as l, errMsg as m, EVENT_PAD_MS as n, embeddingEncoderCapability as o, zoneAnalyticsCapability as p, addonWidgetsSourceCapability as r, faceGalleryCapability as s, EVENT_KIND_BY_CAP as t, pipelineAnalyticsCapability as u, hydrateSchema as v, object as x, boolean as y };
25239
+ export { object as C, number as S, EventCategory as T, DeviceType as _, audioMetricsCapability as a, array as b, faceGalleryCapability as c, pipelineAnalyticsCapability as d, plateGalleryCapability as f, BaseAddon as g, errMsg as h, addonWidgetsSourceCapability as i, hfModelUrl as l, zoneAnalyticsCapability as m, EVENT_PAD_MS as n, cosineSimilarity as o, videoclipsCapability as p, OpsLogEntrySchema as r, embeddingEncoderCapability as s, EVENT_KIND_BY_CAP as t, nodePin as u, createEvent as v, string as w, boolean as x, hydrateSchema as y };