@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/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
package/dist/webhooks.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."
|
|
@@ -15592,6 +15596,7 @@ var embeddingScopeArgs = z.object({
|
|
|
15592
15596
|
workspaceId: z.string().optional().describe("Workspace scope for the embedding operation."),
|
|
15593
15597
|
nodeType,
|
|
15594
15598
|
embeddingModel: z.string().optional().describe("Optional embedding model filter."),
|
|
15599
|
+
includeInactive: z.boolean().optional().describe("Include archived, superseded, or otherwise inactive epistemic nodes in coverage checks."),
|
|
15595
15600
|
limit: z.number().optional().describe("Maximum rows to return."),
|
|
15596
15601
|
cursor: z.string().optional().describe("Pagination cursor.")
|
|
15597
15602
|
});
|
|
@@ -15622,6 +15627,7 @@ var embeddingsContracts = [
|
|
|
15622
15627
|
module: "embeddings",
|
|
15623
15628
|
functionName: "listMissingForTopic",
|
|
15624
15629
|
kind: "query",
|
|
15630
|
+
componentPath: "lucern",
|
|
15625
15631
|
inputProjection: passthroughInput
|
|
15626
15632
|
},
|
|
15627
15633
|
args: embeddingScopeArgs
|
|
@@ -15642,6 +15648,7 @@ var embeddingsContracts = [
|
|
|
15642
15648
|
module: "embeddings",
|
|
15643
15649
|
functionName: "vectorSearchByTopic",
|
|
15644
15650
|
kind: "action",
|
|
15651
|
+
componentPath: "lucern",
|
|
15645
15652
|
inputProjection: passthroughInput
|
|
15646
15653
|
},
|
|
15647
15654
|
args: searchEmbeddingsArgs
|
|
@@ -15659,6 +15666,7 @@ var embeddingsContracts = [
|
|
|
15659
15666
|
module: "embeddings",
|
|
15660
15667
|
functionName: "getByNodeIds",
|
|
15661
15668
|
kind: "query",
|
|
15669
|
+
componentPath: "lucern",
|
|
15662
15670
|
inputProjection: passthroughInput
|
|
15663
15671
|
},
|
|
15664
15672
|
args: getEmbeddingsArgs
|
|
@@ -15676,6 +15684,7 @@ var embeddingsContracts = [
|
|
|
15676
15684
|
module: "embeddings",
|
|
15677
15685
|
functionName: "markEmbeddingBackfillQueued",
|
|
15678
15686
|
kind: "mutation",
|
|
15687
|
+
componentPath: "lucern",
|
|
15679
15688
|
inputProjection: passthroughInput
|
|
15680
15689
|
},
|
|
15681
15690
|
args: queueEmbeddingBackfillArgs
|
|
@@ -15739,6 +15748,7 @@ function hybridContract(args) {
|
|
|
15739
15748
|
module: "hybridDiscovery",
|
|
15740
15749
|
functionName: args.sdkMethod,
|
|
15741
15750
|
kind: "action",
|
|
15751
|
+
componentPath: "lucern",
|
|
15742
15752
|
inputProjection: modeInput(args.mode)
|
|
15743
15753
|
},
|
|
15744
15754
|
args: hybridPlannerArgs
|