@lucern/sdk 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/CHANGELOG.md +3 -0
- package/dist/beliefs/index.js +3 -1
- package/dist/beliefs/index.js.map +1 -1
- package/dist/client.js +3 -1
- package/dist/client.js.map +1 -1
- package/dist/contradictions/index.js +3 -1
- package/dist/contradictions/index.js.map +1 -1
- package/dist/decisions/index.js +3 -1
- package/dist/decisions/index.js.map +1 -1
- package/dist/edges/index.js +3 -1
- package/dist/edges/index.js.map +1 -1
- package/dist/embeddingsClient.d.ts +2 -1
- package/dist/embeddingsClient.js +2 -0
- package/dist/embeddingsClient.js.map +1 -1
- package/dist/evidence/index.js +3 -1
- package/dist/evidence/index.js.map +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/lenses/index.js +3 -1
- package/dist/lenses/index.js.map +1 -1
- package/dist/nodes/index.js +3 -1
- package/dist/nodes/index.js.map +1 -1
- package/dist/ontologies/index.js +3 -1
- package/dist/ontologies/index.js.map +1 -1
- package/dist/proof-attestation.json +1 -1
- package/dist/questions/index.js +3 -1
- package/dist/questions/index.js.map +1 -1
- package/dist/topics/index.js +3 -1
- package/dist/topics/index.js.map +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/dist/version.js.map +1 -1
- package/dist/worktrees/index.js +3 -1
- package/dist/worktrees/index.js.map +1 -1
- package/package.json +5 -5
package/dist/client.js
CHANGED
|
@@ -6538,6 +6538,7 @@ var EMBEDDINGS_FIELDS = [
|
|
|
6538
6538
|
"nodeIds",
|
|
6539
6539
|
"nodeType",
|
|
6540
6540
|
"embeddingModel",
|
|
6541
|
+
"includeInactive",
|
|
6541
6542
|
"queryText",
|
|
6542
6543
|
"queryVector",
|
|
6543
6544
|
"minScore",
|
|
@@ -6556,6 +6557,7 @@ function missingQuery(input) {
|
|
|
6556
6557
|
workspaceId: cleanRequiredString(input.workspaceId, "workspaceId"),
|
|
6557
6558
|
nodeType: input.nodeType,
|
|
6558
6559
|
embeddingModel: input.embeddingModel,
|
|
6560
|
+
includeInactive: input.includeInactive,
|
|
6559
6561
|
limit: input.limit,
|
|
6560
6562
|
cursor: input.cursor
|
|
6561
6563
|
};
|
|
@@ -9559,7 +9561,7 @@ function createToolRegistryClient(config = {}) {
|
|
|
9559
9561
|
}
|
|
9560
9562
|
|
|
9561
9563
|
// src/version.ts
|
|
9562
|
-
var LUCERN_SDK_VERSION = "1.0.
|
|
9564
|
+
var LUCERN_SDK_VERSION = "1.0.9";
|
|
9563
9565
|
|
|
9564
9566
|
// src/workflowClient.ts
|
|
9565
9567
|
function normalizeLensQuery(value) {
|