@lucern/sdk 0.3.0-alpha.13 → 0.3.0-alpha.15
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/README.md +8 -0
- package/dist/beliefs/index.js +3 -1
- package/dist/beliefs/index.js.map +1 -1
- package/dist/client.d.ts +2 -2
- 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/evidence/index.js +3 -1
- package/dist/evidence/index.js.map +1 -1
- package/dist/gatewayFacades.d.ts +2 -0
- package/dist/gatewayFacades.js +2 -0
- package/dist/gatewayFacades.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +6 -3
- 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/questions/index.js +3 -1
- package/dist/questions/index.js.map +1 -1
- package/dist/secrets.d.ts +1 -1
- package/dist/secrets.js +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/workflowClient.d.ts +2 -0
- package/dist/workflowClient.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.d.ts
CHANGED
|
@@ -981,7 +981,7 @@ declare function createLucernClient(config?: LucernClientConfig): {
|
|
|
981
981
|
workspaceId?: string;
|
|
982
982
|
topicId?: string;
|
|
983
983
|
status?: WorkflowLensStatus;
|
|
984
|
-
perspectiveType
|
|
984
|
+
perspectiveType?: WorkflowLensPerspectiveType;
|
|
985
985
|
} & TopicIdentifierInput) => Promise<PlatformGatewaySuccess<ListResult<WorkflowLensRecord, "lenses">>>;
|
|
986
986
|
applyLensToTopic: (input: {
|
|
987
987
|
lensId: string;
|
|
@@ -2078,7 +2078,7 @@ declare function createLucernClient(config?: LucernClientConfig): {
|
|
|
2078
2078
|
workspaceId?: string;
|
|
2079
2079
|
topicId?: string;
|
|
2080
2080
|
status?: WorkflowLensStatus;
|
|
2081
|
-
perspectiveType
|
|
2081
|
+
perspectiveType?: WorkflowLensPerspectiveType;
|
|
2082
2082
|
} & TopicIdentifierInput): Promise<PlatformGatewaySuccess<ListResult<WorkflowLensRecord, "lenses">>>;
|
|
2083
2083
|
createLens(input: {
|
|
2084
2084
|
name: string;
|
package/dist/client.js
CHANGED
|
@@ -3803,6 +3803,8 @@ function createTasksFacade(config = {}) {
|
|
|
3803
3803
|
description: input.description,
|
|
3804
3804
|
priority: input.priority,
|
|
3805
3805
|
status: input.status,
|
|
3806
|
+
assigneeId: input.assigneeId,
|
|
3807
|
+
blockedReason: input.blockedReason,
|
|
3806
3808
|
linkedBeliefId: input.linkedBeliefId,
|
|
3807
3809
|
linkedQuestionId: input.linkedQuestionId,
|
|
3808
3810
|
linkedWorktreeId: input.linkedWorktreeId,
|
|
@@ -7107,7 +7109,7 @@ function createToolRegistryClient(config = {}) {
|
|
|
7107
7109
|
}
|
|
7108
7110
|
|
|
7109
7111
|
// src/version.ts
|
|
7110
|
-
var LUCERN_SDK_VERSION = "0.3.0-alpha.
|
|
7112
|
+
var LUCERN_SDK_VERSION = "0.3.0-alpha.15";
|
|
7111
7113
|
|
|
7112
7114
|
// src/workflowClient.ts
|
|
7113
7115
|
function normalizeLensQuery(value) {
|