@lucern/events 1.0.7 → 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
package/dist/index.js
CHANGED
|
@@ -4309,6 +4309,10 @@ var sharedEmbeddingParameters = {
|
|
|
4309
4309
|
type: "string",
|
|
4310
4310
|
description: "Optional embedding model filter."
|
|
4311
4311
|
},
|
|
4312
|
+
includeInactive: {
|
|
4313
|
+
type: "boolean",
|
|
4314
|
+
description: "Include archived, superseded, or otherwise inactive epistemic nodes in coverage checks."
|
|
4315
|
+
},
|
|
4312
4316
|
limit: {
|
|
4313
4317
|
type: "number",
|
|
4314
4318
|
description: "Maximum rows to return."
|
|
@@ -15748,6 +15752,7 @@ var embeddingScopeArgs = z.object({
|
|
|
15748
15752
|
workspaceId: z.string().optional().describe("Workspace scope for the embedding operation."),
|
|
15749
15753
|
nodeType,
|
|
15750
15754
|
embeddingModel: z.string().optional().describe("Optional embedding model filter."),
|
|
15755
|
+
includeInactive: z.boolean().optional().describe("Include archived, superseded, or otherwise inactive epistemic nodes in coverage checks."),
|
|
15751
15756
|
limit: z.number().optional().describe("Maximum rows to return."),
|
|
15752
15757
|
cursor: z.string().optional().describe("Pagination cursor.")
|
|
15753
15758
|
});
|
|
@@ -15778,6 +15783,7 @@ var embeddingsContracts = [
|
|
|
15778
15783
|
module: "embeddings",
|
|
15779
15784
|
functionName: "listMissingForTopic",
|
|
15780
15785
|
kind: "query",
|
|
15786
|
+
componentPath: "lucern",
|
|
15781
15787
|
inputProjection: passthroughInput
|
|
15782
15788
|
},
|
|
15783
15789
|
args: embeddingScopeArgs
|
|
@@ -15798,6 +15804,7 @@ var embeddingsContracts = [
|
|
|
15798
15804
|
module: "embeddings",
|
|
15799
15805
|
functionName: "vectorSearchByTopic",
|
|
15800
15806
|
kind: "action",
|
|
15807
|
+
componentPath: "lucern",
|
|
15801
15808
|
inputProjection: passthroughInput
|
|
15802
15809
|
},
|
|
15803
15810
|
args: searchEmbeddingsArgs
|
|
@@ -15815,6 +15822,7 @@ var embeddingsContracts = [
|
|
|
15815
15822
|
module: "embeddings",
|
|
15816
15823
|
functionName: "getByNodeIds",
|
|
15817
15824
|
kind: "query",
|
|
15825
|
+
componentPath: "lucern",
|
|
15818
15826
|
inputProjection: passthroughInput
|
|
15819
15827
|
},
|
|
15820
15828
|
args: getEmbeddingsArgs
|
|
@@ -15832,6 +15840,7 @@ var embeddingsContracts = [
|
|
|
15832
15840
|
module: "embeddings",
|
|
15833
15841
|
functionName: "markEmbeddingBackfillQueued",
|
|
15834
15842
|
kind: "mutation",
|
|
15843
|
+
componentPath: "lucern",
|
|
15835
15844
|
inputProjection: passthroughInput
|
|
15836
15845
|
},
|
|
15837
15846
|
args: queueEmbeddingBackfillArgs
|
|
@@ -15895,6 +15904,7 @@ function hybridContract(args) {
|
|
|
15895
15904
|
module: "hybridDiscovery",
|
|
15896
15905
|
functionName: args.sdkMethod,
|
|
15897
15906
|
kind: "action",
|
|
15907
|
+
componentPath: "lucern",
|
|
15898
15908
|
inputProjection: modeInput(args.mode)
|
|
15899
15909
|
},
|
|
15900
15910
|
args: hybridPlannerArgs
|