@lucern/sdk 1.0.9 → 1.0.11
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/README.md +35 -0
- package/dist/beliefs/index.js +10 -1
- package/dist/beliefs/index.js.map +1 -1
- package/dist/client.d.ts +9 -0
- package/dist/client.js +10 -1
- package/dist/client.js.map +1 -1
- package/dist/clientPlatformNamespaces.d.ts +9 -0
- package/dist/clientPlatformNamespaces.js +9 -0
- package/dist/clientPlatformNamespaces.js.map +1 -1
- package/dist/contradictions/index.js +10 -1
- package/dist/contradictions/index.js.map +1 -1
- package/dist/decisions/index.js +10 -1
- package/dist/decisions/index.js.map +1 -1
- package/dist/edges/index.js +10 -1
- package/dist/edges/index.js.map +1 -1
- package/dist/evidence/index.js +10 -1
- package/dist/evidence/index.js.map +1 -1
- package/dist/index.js +10 -1
- package/dist/index.js.map +1 -1
- package/dist/lenses/index.js +10 -1
- package/dist/lenses/index.js.map +1 -1
- package/dist/nodes/index.js +10 -1
- package/dist/nodes/index.js.map +1 -1
- package/dist/ontologies/index.js +10 -1
- package/dist/ontologies/index.js.map +1 -1
- package/dist/proof-attestation.json +1 -1
- package/dist/questions/index.js +10 -1
- package/dist/questions/index.js.map +1 -1
- package/dist/topics/index.js +10 -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 +10 -1
- package/dist/worktrees/index.js.map +1 -1
- package/package.json +5 -5
package/dist/client.d.ts
CHANGED
|
@@ -103,6 +103,15 @@ declare function createLucernClient(config?: LucernClientConfig): {
|
|
|
103
103
|
bootstrap: {
|
|
104
104
|
generateSessionHandoff: any;
|
|
105
105
|
};
|
|
106
|
+
hybrid: {
|
|
107
|
+
discover: any;
|
|
108
|
+
hybridDiscover: any;
|
|
109
|
+
resolveTopicSemantic: any;
|
|
110
|
+
expandGraphNeighborhood: any;
|
|
111
|
+
findRelatedNodes: any;
|
|
112
|
+
analyzeGraphImpact: any;
|
|
113
|
+
detectGraphDrift: any;
|
|
114
|
+
};
|
|
106
115
|
embeddings: any;
|
|
107
116
|
graphAnalysis: any;
|
|
108
117
|
graphRecommendations: any;
|
package/dist/client.js
CHANGED
|
@@ -4270,6 +4270,15 @@ function createClientPlatformNamespaces(ctx) {
|
|
|
4270
4270
|
bootstrap: {
|
|
4271
4271
|
generateSessionHandoff: functionSurfaceClient.generateSessionHandoff
|
|
4272
4272
|
},
|
|
4273
|
+
hybrid: {
|
|
4274
|
+
discover: functionSurfaceClient.hybridDiscover,
|
|
4275
|
+
hybridDiscover: functionSurfaceClient.hybridDiscover,
|
|
4276
|
+
resolveTopicSemantic: functionSurfaceClient.resolveTopicSemantic,
|
|
4277
|
+
expandGraphNeighborhood: functionSurfaceClient.expandGraphNeighborhood,
|
|
4278
|
+
findRelatedNodes: functionSurfaceClient.findRelatedNodes,
|
|
4279
|
+
analyzeGraphImpact: functionSurfaceClient.analyzeGraphImpact,
|
|
4280
|
+
detectGraphDrift: functionSurfaceClient.detectGraphDrift
|
|
4281
|
+
},
|
|
4273
4282
|
embeddings: embeddingsClient,
|
|
4274
4283
|
graphAnalysis: graphAnalysisClient,
|
|
4275
4284
|
graphRecommendations: graphRecommendationsClient,
|
|
@@ -9561,7 +9570,7 @@ function createToolRegistryClient(config = {}) {
|
|
|
9561
9570
|
}
|
|
9562
9571
|
|
|
9563
9572
|
// src/version.ts
|
|
9564
|
-
var LUCERN_SDK_VERSION = "1.0.
|
|
9573
|
+
var LUCERN_SDK_VERSION = "1.0.11";
|
|
9565
9574
|
|
|
9566
9575
|
// src/workflowClient.ts
|
|
9567
9576
|
function normalizeLensQuery(value) {
|