@lucern/events 1.0.8 → 1.0.9
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/index.js +10 -0
- package/dist/index.js.map +1 -1
- package/dist/outbox.js +10 -0
- package/dist/outbox.js.map +1 -1
- package/dist/proof-attestation.json +1 -1
- package/dist/types.js +10 -0
- package/dist/types.js.map +1 -1
- package/dist/webhook-delivery-machine.js +10 -0
- package/dist/webhook-delivery-machine.js.map +1 -1
- package/dist/webhooks.js +10 -0
- package/dist/webhooks.js.map +1 -1
- package/package.json +2 -2
|
@@ -4284,6 +4284,10 @@ var sharedEmbeddingParameters = {
|
|
|
4284
4284
|
type: "string",
|
|
4285
4285
|
description: "Optional embedding model filter."
|
|
4286
4286
|
},
|
|
4287
|
+
includeInactive: {
|
|
4288
|
+
type: "boolean",
|
|
4289
|
+
description: "Include archived, superseded, or otherwise inactive epistemic nodes in coverage checks."
|
|
4290
|
+
},
|
|
4287
4291
|
limit: {
|
|
4288
4292
|
type: "number",
|
|
4289
4293
|
description: "Maximum rows to return."
|
|
@@ -15593,6 +15597,7 @@ var embeddingScopeArgs = z.object({
|
|
|
15593
15597
|
workspaceId: z.string().optional().describe("Workspace scope for the embedding operation."),
|
|
15594
15598
|
nodeType,
|
|
15595
15599
|
embeddingModel: z.string().optional().describe("Optional embedding model filter."),
|
|
15600
|
+
includeInactive: z.boolean().optional().describe("Include archived, superseded, or otherwise inactive epistemic nodes in coverage checks."),
|
|
15596
15601
|
limit: z.number().optional().describe("Maximum rows to return."),
|
|
15597
15602
|
cursor: z.string().optional().describe("Pagination cursor.")
|
|
15598
15603
|
});
|
|
@@ -15623,6 +15628,7 @@ var embeddingsContracts = [
|
|
|
15623
15628
|
module: "embeddings",
|
|
15624
15629
|
functionName: "listMissingForTopic",
|
|
15625
15630
|
kind: "query",
|
|
15631
|
+
componentPath: "lucern",
|
|
15626
15632
|
inputProjection: passthroughInput
|
|
15627
15633
|
},
|
|
15628
15634
|
args: embeddingScopeArgs
|
|
@@ -15643,6 +15649,7 @@ var embeddingsContracts = [
|
|
|
15643
15649
|
module: "embeddings",
|
|
15644
15650
|
functionName: "vectorSearchByTopic",
|
|
15645
15651
|
kind: "action",
|
|
15652
|
+
componentPath: "lucern",
|
|
15646
15653
|
inputProjection: passthroughInput
|
|
15647
15654
|
},
|
|
15648
15655
|
args: searchEmbeddingsArgs
|
|
@@ -15660,6 +15667,7 @@ var embeddingsContracts = [
|
|
|
15660
15667
|
module: "embeddings",
|
|
15661
15668
|
functionName: "getByNodeIds",
|
|
15662
15669
|
kind: "query",
|
|
15670
|
+
componentPath: "lucern",
|
|
15663
15671
|
inputProjection: passthroughInput
|
|
15664
15672
|
},
|
|
15665
15673
|
args: getEmbeddingsArgs
|
|
@@ -15677,6 +15685,7 @@ var embeddingsContracts = [
|
|
|
15677
15685
|
module: "embeddings",
|
|
15678
15686
|
functionName: "markEmbeddingBackfillQueued",
|
|
15679
15687
|
kind: "mutation",
|
|
15688
|
+
componentPath: "lucern",
|
|
15680
15689
|
inputProjection: passthroughInput
|
|
15681
15690
|
},
|
|
15682
15691
|
args: queueEmbeddingBackfillArgs
|
|
@@ -15740,6 +15749,7 @@ function hybridContract(args) {
|
|
|
15740
15749
|
module: "hybridDiscovery",
|
|
15741
15750
|
functionName: args.sdkMethod,
|
|
15742
15751
|
kind: "action",
|
|
15752
|
+
componentPath: "lucern",
|
|
15743
15753
|
inputProjection: modeInput(args.mode)
|
|
15744
15754
|
},
|
|
15745
15755
|
args: hybridPlannerArgs
|