@lucern/events 1.0.8 → 1.0.10

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/outbox.js CHANGED
@@ -4283,6 +4283,10 @@ var sharedEmbeddingParameters = {
4283
4283
  type: "string",
4284
4284
  description: "Optional embedding model filter."
4285
4285
  },
4286
+ includeInactive: {
4287
+ type: "boolean",
4288
+ description: "Include archived, superseded, or otherwise inactive epistemic nodes in coverage checks."
4289
+ },
4286
4290
  limit: {
4287
4291
  type: "number",
4288
4292
  description: "Maximum rows to return."
@@ -15683,6 +15687,7 @@ var embeddingScopeArgs = z.object({
15683
15687
  workspaceId: z.string().optional().describe("Workspace scope for the embedding operation."),
15684
15688
  nodeType,
15685
15689
  embeddingModel: z.string().optional().describe("Optional embedding model filter."),
15690
+ includeInactive: z.boolean().optional().describe("Include archived, superseded, or otherwise inactive epistemic nodes in coverage checks."),
15686
15691
  limit: z.number().optional().describe("Maximum rows to return."),
15687
15692
  cursor: z.string().optional().describe("Pagination cursor.")
15688
15693
  });
@@ -15713,6 +15718,7 @@ var embeddingsContracts = [
15713
15718
  module: "embeddings",
15714
15719
  functionName: "listMissingForTopic",
15715
15720
  kind: "query",
15721
+ componentPath: "lucern",
15716
15722
  inputProjection: passthroughInput
15717
15723
  },
15718
15724
  args: embeddingScopeArgs
@@ -15733,6 +15739,7 @@ var embeddingsContracts = [
15733
15739
  module: "embeddings",
15734
15740
  functionName: "vectorSearchByTopic",
15735
15741
  kind: "action",
15742
+ componentPath: "lucern",
15736
15743
  inputProjection: passthroughInput
15737
15744
  },
15738
15745
  args: searchEmbeddingsArgs
@@ -15750,6 +15757,7 @@ var embeddingsContracts = [
15750
15757
  module: "embeddings",
15751
15758
  functionName: "getByNodeIds",
15752
15759
  kind: "query",
15760
+ componentPath: "lucern",
15753
15761
  inputProjection: passthroughInput
15754
15762
  },
15755
15763
  args: getEmbeddingsArgs
@@ -15767,6 +15775,7 @@ var embeddingsContracts = [
15767
15775
  module: "embeddings",
15768
15776
  functionName: "markEmbeddingBackfillQueued",
15769
15777
  kind: "mutation",
15778
+ componentPath: "lucern",
15770
15779
  inputProjection: passthroughInput
15771
15780
  },
15772
15781
  args: queueEmbeddingBackfillArgs
@@ -15830,6 +15839,7 @@ function hybridContract(args) {
15830
15839
  module: "hybridDiscovery",
15831
15840
  functionName: args.sdkMethod,
15832
15841
  kind: "action",
15842
+ componentPath: "lucern",
15833
15843
  inputProjection: modeInput(args.mode)
15834
15844
  },
15835
15845
  args: hybridPlannerArgs