@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/questions/index.js
CHANGED
|
@@ -6542,6 +6542,7 @@ var EMBEDDINGS_FIELDS = [
|
|
|
6542
6542
|
"nodeIds",
|
|
6543
6543
|
"nodeType",
|
|
6544
6544
|
"embeddingModel",
|
|
6545
|
+
"includeInactive",
|
|
6545
6546
|
"queryText",
|
|
6546
6547
|
"queryVector",
|
|
6547
6548
|
"minScore",
|
|
@@ -6560,6 +6561,7 @@ function missingQuery(input) {
|
|
|
6560
6561
|
workspaceId: cleanRequiredString(input.workspaceId, "workspaceId"),
|
|
6561
6562
|
nodeType: input.nodeType,
|
|
6562
6563
|
embeddingModel: input.embeddingModel,
|
|
6564
|
+
includeInactive: input.includeInactive,
|
|
6563
6565
|
limit: input.limit,
|
|
6564
6566
|
cursor: input.cursor
|
|
6565
6567
|
};
|
|
@@ -9563,7 +9565,7 @@ function createToolRegistryClient(config = {}) {
|
|
|
9563
9565
|
}
|
|
9564
9566
|
|
|
9565
9567
|
// src/version.ts
|
|
9566
|
-
var LUCERN_SDK_VERSION = "1.0.
|
|
9568
|
+
var LUCERN_SDK_VERSION = "1.0.9";
|
|
9567
9569
|
|
|
9568
9570
|
// src/workflowClient.ts
|
|
9569
9571
|
function normalizeLensQuery(value) {
|