@lucern/sdk 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/CHANGELOG.md +6 -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/index.js
CHANGED
|
@@ -6830,6 +6830,7 @@ var EMBEDDINGS_FIELDS = [
|
|
|
6830
6830
|
"nodeIds",
|
|
6831
6831
|
"nodeType",
|
|
6832
6832
|
"embeddingModel",
|
|
6833
|
+
"includeInactive",
|
|
6833
6834
|
"queryText",
|
|
6834
6835
|
"queryVector",
|
|
6835
6836
|
"minScore",
|
|
@@ -6848,6 +6849,7 @@ function missingQuery(input) {
|
|
|
6848
6849
|
workspaceId: cleanRequiredString(input.workspaceId, "workspaceId"),
|
|
6849
6850
|
nodeType: input.nodeType,
|
|
6850
6851
|
embeddingModel: input.embeddingModel,
|
|
6852
|
+
includeInactive: input.includeInactive,
|
|
6851
6853
|
limit: input.limit,
|
|
6852
6854
|
cursor: input.cursor
|
|
6853
6855
|
};
|
|
@@ -9991,7 +9993,7 @@ function createToolRegistryClient(config = {}) {
|
|
|
9991
9993
|
}
|
|
9992
9994
|
|
|
9993
9995
|
// src/version.ts
|
|
9994
|
-
var LUCERN_SDK_VERSION = "1.0.
|
|
9996
|
+
var LUCERN_SDK_VERSION = "1.0.10";
|
|
9995
9997
|
|
|
9996
9998
|
// src/workflowClient.ts
|
|
9997
9999
|
function normalizeLensQuery(value) {
|