@lucern/contracts 1.0.50 → 1.0.51
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/function-registry/beliefs.d.ts +77 -0
- package/dist/function-registry/beliefs.js +7 -2
- package/dist/function-registry/coding.d.ts +183 -0
- package/dist/function-registry/coding.js +60 -33
- package/dist/function-registry/context.d.ts +9 -0
- package/dist/function-registry/context.js +1 -0
- package/dist/function-registry/contracts.d.ts +16 -12
- package/dist/function-registry/contracts.js +5 -2
- package/dist/function-registry/coordination.d.ts +9 -0
- package/dist/function-registry/coordination.js +1 -0
- package/dist/function-registry/edges.d.ts +140 -0
- package/dist/function-registry/edges.js +6 -2
- package/dist/function-registry/embeddings.d.ts +4 -0
- package/dist/function-registry/embeddings.js +1 -0
- package/dist/function-registry/evidence.d.ts +251 -0
- package/dist/function-registry/evidence.js +94 -5
- package/dist/function-registry/graph.d.ts +15 -0
- package/dist/function-registry/graph.js +1 -0
- package/dist/function-registry/helpers.d.ts +2 -0
- package/dist/function-registry/helpers.js +1 -0
- package/dist/function-registry/hybrid.d.ts +6 -0
- package/dist/function-registry/hybrid.js +1 -0
- package/dist/function-registry/identity.d.ts +4 -0
- package/dist/function-registry/identity.js +1 -0
- package/dist/function-registry/index.js +1 -0
- package/dist/function-registry/judgments.d.ts +2 -0
- package/dist/function-registry/judgments.js +1 -0
- package/dist/function-registry/legacy.d.ts +1 -0
- package/dist/function-registry/legacy.js +1 -0
- package/dist/function-registry/lenses.d.ts +4 -0
- package/dist/function-registry/lenses.js +1 -0
- package/dist/function-registry/nodes.d.ts +203 -0
- package/dist/function-registry/nodes.js +9 -3
- package/dist/function-registry/ontologies.d.ts +11 -0
- package/dist/function-registry/ontologies.js +8 -2
- package/dist/function-registry/pipeline.d.ts +3 -0
- package/dist/function-registry/pipeline.js +1 -0
- package/dist/function-registry/policy.d.ts +1 -0
- package/dist/function-registry/policy.js +1 -0
- package/dist/function-registry/questions.d.ts +104 -0
- package/dist/function-registry/questions.js +10 -5
- package/dist/function-registry/tasks.d.ts +86 -0
- package/dist/function-registry/tasks.js +2 -1
- package/dist/function-registry/topics.d.ts +7 -0
- package/dist/function-registry/topics.js +7 -2
- package/dist/function-registry/types.d.ts +46 -0
- package/dist/function-registry/worktrees.d.ts +440 -0
- package/dist/function-registry/worktrees.js +9 -3
- package/dist/generated/convexSchemas.d.ts +10 -10
- package/dist/index.d.ts +1 -0
- package/dist/index.js +5 -0
- package/dist/infisical-runtime.base.js +5 -0
- package/dist/infisical-runtime.contract.js +5 -0
- package/dist/infisical-runtime.tenant-secrets.js +5 -0
- package/dist/manifests/infisical-runtime-manifest.js +5 -0
- package/dist/manifests/tenant-client-manifest.d.ts +5 -1
- package/dist/manifests/tenant-client-manifest.js +5 -0
- package/dist/operator-receipt.contract.d.ts +32 -0
- package/dist/operator-receipt.contract.js +1 -0
- package/dist/projections/create-evidence.projection.d.ts +12 -12
- package/dist/projections/index.d.ts +2 -2
- package/dist/proof-attestation.json +1 -1
- package/dist/tenant-client.contract.d.ts +5 -1
- package/dist/tenant-client.contract.js +5 -0
- package/package.json +1 -1
|
@@ -4266,7 +4266,7 @@ export declare const KERNEL_SCHEMA_TABLES: {
|
|
|
4266
4266
|
beliefId: string;
|
|
4267
4267
|
worktreeId: string;
|
|
4268
4268
|
updatedAt: number;
|
|
4269
|
-
relationType: "conditional" | "primary" | "
|
|
4269
|
+
relationType: "conditional" | "primary" | "contradicting" | "supporting" | "counterfactual" | "cascade" | "alternative" | "dependency" | "prerequisite";
|
|
4270
4270
|
addedAt: number;
|
|
4271
4271
|
}, {
|
|
4272
4272
|
addedAt: import("convex/values").VFloat64<number, "required">;
|
|
@@ -4285,7 +4285,7 @@ export declare const KERNEL_SCHEMA_TABLES: {
|
|
|
4285
4285
|
llmReasoning: import("convex/values").VString<string | undefined, "optional">;
|
|
4286
4286
|
llmValence: import("convex/values").VFloat64<number | undefined, "optional">;
|
|
4287
4287
|
relationDescription: import("convex/values").VString<string | undefined, "optional">;
|
|
4288
|
-
relationType: import("convex/values").VUnion<"conditional" | "primary" | "
|
|
4288
|
+
relationType: import("convex/values").VUnion<"conditional" | "primary" | "contradicting" | "supporting" | "counterfactual" | "cascade" | "alternative" | "dependency" | "prerequisite", [import("convex/values").VLiteral<"primary", "required">, import("convex/values").VLiteral<"counterfactual", "required">, import("convex/values").VLiteral<"dependency", "required">, import("convex/values").VLiteral<"cascade", "required">, import("convex/values").VLiteral<"conditional", "required">, import("convex/values").VLiteral<"supporting", "required">, import("convex/values").VLiteral<"contradicting", "required">, import("convex/values").VLiteral<"alternative", "required">, import("convex/values").VLiteral<"prerequisite", "required">], "required", never>;
|
|
4289
4289
|
updatedAt: import("convex/values").VFloat64<number, "required">;
|
|
4290
4290
|
worktreeId: import("convex/values").VString<string, "required">;
|
|
4291
4291
|
}, "required", "beliefId" | "worktreeId" | "updatedAt" | "confidenceDelta" | "relationType" | "relationDescription" | "counterfactualText" | "dependencyText" | "cascadeText" | "initialConfidence" | "initialEvidenceCount" | "finalConfidence" | "finalEvidenceCount" | "llmValence" | "llmCertainty" | "llmReasoning" | "llmEvidenceScores" | "llmAssessedAt" | "addedAt">, {
|
|
@@ -14808,7 +14808,7 @@ export declare const KERNEL_TIER_SCHEMA_TABLES: {
|
|
|
14808
14808
|
beliefId: string;
|
|
14809
14809
|
worktreeId: string;
|
|
14810
14810
|
updatedAt: number;
|
|
14811
|
-
relationType: "conditional" | "primary" | "
|
|
14811
|
+
relationType: "conditional" | "primary" | "contradicting" | "supporting" | "counterfactual" | "cascade" | "alternative" | "dependency" | "prerequisite";
|
|
14812
14812
|
addedAt: number;
|
|
14813
14813
|
}, {
|
|
14814
14814
|
addedAt: import("convex/values").VFloat64<number, "required">;
|
|
@@ -14827,7 +14827,7 @@ export declare const KERNEL_TIER_SCHEMA_TABLES: {
|
|
|
14827
14827
|
llmReasoning: import("convex/values").VString<string | undefined, "optional">;
|
|
14828
14828
|
llmValence: import("convex/values").VFloat64<number | undefined, "optional">;
|
|
14829
14829
|
relationDescription: import("convex/values").VString<string | undefined, "optional">;
|
|
14830
|
-
relationType: import("convex/values").VUnion<"conditional" | "primary" | "
|
|
14830
|
+
relationType: import("convex/values").VUnion<"conditional" | "primary" | "contradicting" | "supporting" | "counterfactual" | "cascade" | "alternative" | "dependency" | "prerequisite", [import("convex/values").VLiteral<"primary", "required">, import("convex/values").VLiteral<"counterfactual", "required">, import("convex/values").VLiteral<"dependency", "required">, import("convex/values").VLiteral<"cascade", "required">, import("convex/values").VLiteral<"conditional", "required">, import("convex/values").VLiteral<"supporting", "required">, import("convex/values").VLiteral<"contradicting", "required">, import("convex/values").VLiteral<"alternative", "required">, import("convex/values").VLiteral<"prerequisite", "required">], "required", never>;
|
|
14831
14831
|
updatedAt: import("convex/values").VFloat64<number, "required">;
|
|
14832
14832
|
worktreeId: import("convex/values").VString<string, "required">;
|
|
14833
14833
|
}, "required", "beliefId" | "worktreeId" | "updatedAt" | "confidenceDelta" | "relationType" | "relationDescription" | "counterfactualText" | "dependencyText" | "cascadeText" | "initialConfidence" | "initialEvidenceCount" | "finalConfidence" | "finalEvidenceCount" | "llmValence" | "llmCertainty" | "llmReasoning" | "llmEvidenceScores" | "llmAssessedAt" | "addedAt">, {
|
|
@@ -21563,7 +21563,7 @@ export declare const STACK_TIER_SCHEMA_TABLES: {
|
|
|
21563
21563
|
beliefId: string;
|
|
21564
21564
|
worktreeId: string;
|
|
21565
21565
|
updatedAt: number;
|
|
21566
|
-
relationType: "conditional" | "primary" | "
|
|
21566
|
+
relationType: "conditional" | "primary" | "contradicting" | "supporting" | "counterfactual" | "cascade" | "alternative" | "dependency" | "prerequisite";
|
|
21567
21567
|
addedAt: number;
|
|
21568
21568
|
}, {
|
|
21569
21569
|
addedAt: import("convex/values").VFloat64<number, "required">;
|
|
@@ -21582,7 +21582,7 @@ export declare const STACK_TIER_SCHEMA_TABLES: {
|
|
|
21582
21582
|
llmReasoning: import("convex/values").VString<string | undefined, "optional">;
|
|
21583
21583
|
llmValence: import("convex/values").VFloat64<number | undefined, "optional">;
|
|
21584
21584
|
relationDescription: import("convex/values").VString<string | undefined, "optional">;
|
|
21585
|
-
relationType: import("convex/values").VUnion<"conditional" | "primary" | "
|
|
21585
|
+
relationType: import("convex/values").VUnion<"conditional" | "primary" | "contradicting" | "supporting" | "counterfactual" | "cascade" | "alternative" | "dependency" | "prerequisite", [import("convex/values").VLiteral<"primary", "required">, import("convex/values").VLiteral<"counterfactual", "required">, import("convex/values").VLiteral<"dependency", "required">, import("convex/values").VLiteral<"cascade", "required">, import("convex/values").VLiteral<"conditional", "required">, import("convex/values").VLiteral<"supporting", "required">, import("convex/values").VLiteral<"contradicting", "required">, import("convex/values").VLiteral<"alternative", "required">, import("convex/values").VLiteral<"prerequisite", "required">], "required", never>;
|
|
21586
21586
|
updatedAt: import("convex/values").VFloat64<number, "required">;
|
|
21587
21587
|
worktreeId: import("convex/values").VString<string, "required">;
|
|
21588
21588
|
}, "required", "beliefId" | "worktreeId" | "updatedAt" | "confidenceDelta" | "relationType" | "relationDescription" | "counterfactualText" | "dependencyText" | "cascadeText" | "initialConfidence" | "initialEvidenceCount" | "finalConfidence" | "finalEvidenceCount" | "llmValence" | "llmCertainty" | "llmReasoning" | "llmEvidenceScores" | "llmAssessedAt" | "addedAt">, {
|
|
@@ -28946,7 +28946,7 @@ export declare const FULL_TIER_SCHEMA_TABLES: {
|
|
|
28946
28946
|
beliefId: string;
|
|
28947
28947
|
worktreeId: string;
|
|
28948
28948
|
updatedAt: number;
|
|
28949
|
-
relationType: "conditional" | "primary" | "
|
|
28949
|
+
relationType: "conditional" | "primary" | "contradicting" | "supporting" | "counterfactual" | "cascade" | "alternative" | "dependency" | "prerequisite";
|
|
28950
28950
|
addedAt: number;
|
|
28951
28951
|
}, {
|
|
28952
28952
|
addedAt: import("convex/values").VFloat64<number, "required">;
|
|
@@ -28965,7 +28965,7 @@ export declare const FULL_TIER_SCHEMA_TABLES: {
|
|
|
28965
28965
|
llmReasoning: import("convex/values").VString<string | undefined, "optional">;
|
|
28966
28966
|
llmValence: import("convex/values").VFloat64<number | undefined, "optional">;
|
|
28967
28967
|
relationDescription: import("convex/values").VString<string | undefined, "optional">;
|
|
28968
|
-
relationType: import("convex/values").VUnion<"conditional" | "primary" | "
|
|
28968
|
+
relationType: import("convex/values").VUnion<"conditional" | "primary" | "contradicting" | "supporting" | "counterfactual" | "cascade" | "alternative" | "dependency" | "prerequisite", [import("convex/values").VLiteral<"primary", "required">, import("convex/values").VLiteral<"counterfactual", "required">, import("convex/values").VLiteral<"dependency", "required">, import("convex/values").VLiteral<"cascade", "required">, import("convex/values").VLiteral<"conditional", "required">, import("convex/values").VLiteral<"supporting", "required">, import("convex/values").VLiteral<"contradicting", "required">, import("convex/values").VLiteral<"alternative", "required">, import("convex/values").VLiteral<"prerequisite", "required">], "required", never>;
|
|
28969
28969
|
updatedAt: import("convex/values").VFloat64<number, "required">;
|
|
28970
28970
|
worktreeId: import("convex/values").VString<string, "required">;
|
|
28971
28971
|
}, "required", "beliefId" | "worktreeId" | "updatedAt" | "confidenceDelta" | "relationType" | "relationDescription" | "counterfactualText" | "dependencyText" | "cascadeText" | "initialConfidence" | "initialEvidenceCount" | "finalConfidence" | "finalEvidenceCount" | "llmValence" | "llmCertainty" | "llmReasoning" | "llmEvidenceScores" | "llmAssessedAt" | "addedAt">, {
|
|
@@ -37904,7 +37904,7 @@ declare const _default: import("convex/server").SchemaDefinition<{
|
|
|
37904
37904
|
beliefId: string;
|
|
37905
37905
|
worktreeId: string;
|
|
37906
37906
|
updatedAt: number;
|
|
37907
|
-
relationType: "conditional" | "primary" | "
|
|
37907
|
+
relationType: "conditional" | "primary" | "contradicting" | "supporting" | "counterfactual" | "cascade" | "alternative" | "dependency" | "prerequisite";
|
|
37908
37908
|
addedAt: number;
|
|
37909
37909
|
}, {
|
|
37910
37910
|
addedAt: import("convex/values").VFloat64<number, "required">;
|
|
@@ -37923,7 +37923,7 @@ declare const _default: import("convex/server").SchemaDefinition<{
|
|
|
37923
37923
|
llmReasoning: import("convex/values").VString<string | undefined, "optional">;
|
|
37924
37924
|
llmValence: import("convex/values").VFloat64<number | undefined, "optional">;
|
|
37925
37925
|
relationDescription: import("convex/values").VString<string | undefined, "optional">;
|
|
37926
|
-
relationType: import("convex/values").VUnion<"conditional" | "primary" | "
|
|
37926
|
+
relationType: import("convex/values").VUnion<"conditional" | "primary" | "contradicting" | "supporting" | "counterfactual" | "cascade" | "alternative" | "dependency" | "prerequisite", [import("convex/values").VLiteral<"primary", "required">, import("convex/values").VLiteral<"counterfactual", "required">, import("convex/values").VLiteral<"dependency", "required">, import("convex/values").VLiteral<"cascade", "required">, import("convex/values").VLiteral<"conditional", "required">, import("convex/values").VLiteral<"supporting", "required">, import("convex/values").VLiteral<"contradicting", "required">, import("convex/values").VLiteral<"alternative", "required">, import("convex/values").VLiteral<"prerequisite", "required">], "required", never>;
|
|
37927
37927
|
updatedAt: import("convex/values").VFloat64<number, "required">;
|
|
37928
37928
|
worktreeId: import("convex/values").VString<string, "required">;
|
|
37929
37929
|
}, "required", "beliefId" | "worktreeId" | "updatedAt" | "confidenceDelta" | "relationType" | "relationDescription" | "counterfactualText" | "dependencyText" | "cascadeText" | "initialConfidence" | "initialEvidenceCount" | "finalConfidence" | "finalEvidenceCount" | "llmValence" | "llmCertainty" | "llmReasoning" | "llmEvidenceScores" | "llmAssessedAt" | "addedAt">, {
|
package/dist/index.d.ts
CHANGED
|
@@ -62,6 +62,7 @@ export * from "./manifests/tenant-client-manifest.js";
|
|
|
62
62
|
export * from "./observability-audit-store-migration.contract";
|
|
63
63
|
export * from "./ontology-matching.contract";
|
|
64
64
|
export * from "./operator-gauntlet.js";
|
|
65
|
+
export * from "./operator-receipt.contract";
|
|
65
66
|
export * from "./parsimony-diagnostic.contract";
|
|
66
67
|
export * from "./permit-authorization-adapter.contract";
|
|
67
68
|
export * from "./permit-hard-cut-migration.contract";
|
package/dist/index.js
CHANGED
|
@@ -69053,6 +69053,11 @@ var TENANT_CLIENT_INSTALLABLE_PACKAGES = [
|
|
|
69053
69053
|
role: "sdk_dependency",
|
|
69054
69054
|
directTenantImport: false
|
|
69055
69055
|
},
|
|
69056
|
+
{
|
|
69057
|
+
packageName: "@lucern/boundary",
|
|
69058
|
+
role: "sdk_dependency",
|
|
69059
|
+
directTenantImport: false
|
|
69060
|
+
},
|
|
69056
69061
|
{
|
|
69057
69062
|
packageName: "@lucern/cli",
|
|
69058
69063
|
role: "developer_tool",
|
|
@@ -16,6 +16,11 @@ var TENANT_CLIENT_INSTALLABLE_PACKAGES = [
|
|
|
16
16
|
role: "sdk_dependency",
|
|
17
17
|
directTenantImport: false
|
|
18
18
|
},
|
|
19
|
+
{
|
|
20
|
+
packageName: "@lucern/boundary",
|
|
21
|
+
role: "sdk_dependency",
|
|
22
|
+
directTenantImport: false
|
|
23
|
+
},
|
|
19
24
|
{
|
|
20
25
|
packageName: "@lucern/cli",
|
|
21
26
|
role: "developer_tool",
|
|
@@ -16,6 +16,11 @@ var TENANT_CLIENT_INSTALLABLE_PACKAGES = [
|
|
|
16
16
|
role: "sdk_dependency",
|
|
17
17
|
directTenantImport: false
|
|
18
18
|
},
|
|
19
|
+
{
|
|
20
|
+
packageName: "@lucern/boundary",
|
|
21
|
+
role: "sdk_dependency",
|
|
22
|
+
directTenantImport: false
|
|
23
|
+
},
|
|
19
24
|
{
|
|
20
25
|
packageName: "@lucern/cli",
|
|
21
26
|
role: "developer_tool",
|
|
@@ -15,6 +15,11 @@ var TENANT_CLIENT_INSTALLABLE_PACKAGES = [
|
|
|
15
15
|
role: "sdk_dependency",
|
|
16
16
|
directTenantImport: false
|
|
17
17
|
},
|
|
18
|
+
{
|
|
19
|
+
packageName: "@lucern/boundary",
|
|
20
|
+
role: "sdk_dependency",
|
|
21
|
+
directTenantImport: false
|
|
22
|
+
},
|
|
18
23
|
{
|
|
19
24
|
packageName: "@lucern/cli",
|
|
20
25
|
role: "developer_tool",
|
|
@@ -16,6 +16,11 @@ var TENANT_CLIENT_INSTALLABLE_PACKAGES = [
|
|
|
16
16
|
role: "sdk_dependency",
|
|
17
17
|
directTenantImport: false
|
|
18
18
|
},
|
|
19
|
+
{
|
|
20
|
+
packageName: "@lucern/boundary",
|
|
21
|
+
role: "sdk_dependency",
|
|
22
|
+
directTenantImport: false
|
|
23
|
+
},
|
|
19
24
|
{
|
|
20
25
|
packageName: "@lucern/cli",
|
|
21
26
|
role: "developer_tool",
|
|
@@ -55,6 +55,10 @@ export declare const TENANT_CLIENT_MANIFEST: {
|
|
|
55
55
|
readonly packageName: "@lucern/auth";
|
|
56
56
|
readonly role: "sdk_dependency";
|
|
57
57
|
readonly directTenantImport: false;
|
|
58
|
+
}, {
|
|
59
|
+
readonly packageName: "@lucern/boundary";
|
|
60
|
+
readonly role: "sdk_dependency";
|
|
61
|
+
readonly directTenantImport: false;
|
|
58
62
|
}, {
|
|
59
63
|
readonly packageName: "@lucern/cli";
|
|
60
64
|
readonly role: "developer_tool";
|
|
@@ -182,7 +186,7 @@ export declare const TENANT_CLIENT_MANIFEST: {
|
|
|
182
186
|
}, {
|
|
183
187
|
readonly id: "full_suite";
|
|
184
188
|
readonly description: "Full coherent Lucern package suite for design-partner repos that want every published runtime, tool, component, test, and config package pinned together.";
|
|
185
|
-
readonly packageNames: readonly ("@lucern/sdk" | "@lucern/access-control" | "@lucern/agent" | "@lucern/auth" | "@lucern/cli" | "@lucern/client-core" | "@lucern/confidence" | "@lucern/config" | "@lucern/contracts" | "@lucern/control-plane" | "@lucern/developer-kit" | "@lucern/events" | "@lucern/graph-primitives" | "@lucern/graph-sync" | "@lucern/mcp" | "@lucern/pack-host" | "@lucern/pack-installer" | "@lucern/proof-compiler" | "@lucern/react" | "@lucern/reasoning-kernel" | "@lucern/secrets" | "@lucern/server-core" | "@lucern/testing" | "@lucern/transport-core" | "@lucern/types")[];
|
|
189
|
+
readonly packageNames: readonly ("@lucern/sdk" | "@lucern/access-control" | "@lucern/agent" | "@lucern/auth" | "@lucern/boundary" | "@lucern/cli" | "@lucern/client-core" | "@lucern/confidence" | "@lucern/config" | "@lucern/contracts" | "@lucern/control-plane" | "@lucern/developer-kit" | "@lucern/events" | "@lucern/graph-primitives" | "@lucern/graph-sync" | "@lucern/mcp" | "@lucern/pack-host" | "@lucern/pack-installer" | "@lucern/proof-compiler" | "@lucern/react" | "@lucern/reasoning-kernel" | "@lucern/secrets" | "@lucern/server-core" | "@lucern/testing" | "@lucern/transport-core" | "@lucern/types")[];
|
|
186
190
|
readonly dependencyField: "mixed";
|
|
187
191
|
}];
|
|
188
192
|
readonly directImports: readonly [{
|
|
@@ -56,6 +56,11 @@ var TENANT_CLIENT_INSTALLABLE_PACKAGES = [
|
|
|
56
56
|
role: "sdk_dependency",
|
|
57
57
|
directTenantImport: false
|
|
58
58
|
},
|
|
59
|
+
{
|
|
60
|
+
packageName: "@lucern/boundary",
|
|
61
|
+
role: "sdk_dependency",
|
|
62
|
+
directTenantImport: false
|
|
63
|
+
},
|
|
59
64
|
{
|
|
60
65
|
packageName: "@lucern/cli",
|
|
61
66
|
role: "developer_tool",
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export type OperatorReceiptContractKind = "query" | "mutation" | "action";
|
|
2
|
+
export type OperatorReceiptJsonValue = null | boolean | number | string | OperatorReceiptJsonValue[] | {
|
|
3
|
+
[key: string]: OperatorReceiptJsonValue | undefined;
|
|
4
|
+
};
|
|
5
|
+
export interface OperatorReceiptJsonObject {
|
|
6
|
+
[key: string]: OperatorReceiptJsonValue | undefined;
|
|
7
|
+
}
|
|
8
|
+
export interface OperatorReceiptV1 {
|
|
9
|
+
assemblyReceiptId?: string;
|
|
10
|
+
assemblyReceiptVersion?: string;
|
|
11
|
+
axiomTelemetry?: OperatorReceiptJsonObject;
|
|
12
|
+
axiomTraceId?: string;
|
|
13
|
+
broadening?: unknown;
|
|
14
|
+
cache: string;
|
|
15
|
+
candidateCounts?: unknown;
|
|
16
|
+
candidateScope: string;
|
|
17
|
+
contract: string;
|
|
18
|
+
contractKind: OperatorReceiptContractKind;
|
|
19
|
+
coverageWarning?: unknown;
|
|
20
|
+
explicitGlobal: boolean;
|
|
21
|
+
graphHealthPosture?: unknown;
|
|
22
|
+
heartbeatReceipt?: unknown;
|
|
23
|
+
idempotencyKey?: string;
|
|
24
|
+
narrativeCoverage?: unknown;
|
|
25
|
+
noDefaultGlobalScan: boolean;
|
|
26
|
+
reasoningLints?: unknown;
|
|
27
|
+
receiptVersion: "operator_receipt.v1";
|
|
28
|
+
source: string;
|
|
29
|
+
suggestedNextActions: string[];
|
|
30
|
+
surface: string;
|
|
31
|
+
synthesisLints?: unknown;
|
|
32
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -40,7 +40,7 @@ export declare const createEvidenceInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
40
40
|
confidence?: number | undefined;
|
|
41
41
|
weight?: number | undefined;
|
|
42
42
|
rationale?: string | undefined;
|
|
43
|
-
relation?: "supports" | "contradicts" | "
|
|
43
|
+
relation?: "supports" | "contradicts" | "contradicting" | "supporting" | undefined;
|
|
44
44
|
}, {
|
|
45
45
|
beliefId?: string | undefined;
|
|
46
46
|
beliefNodeId?: string | undefined;
|
|
@@ -49,7 +49,7 @@ export declare const createEvidenceInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
49
49
|
confidence?: number | undefined;
|
|
50
50
|
weight?: number | undefined;
|
|
51
51
|
rationale?: string | undefined;
|
|
52
|
-
relation?: "supports" | "contradicts" | "
|
|
52
|
+
relation?: "supports" | "contradicts" | "contradicting" | "supporting" | undefined;
|
|
53
53
|
}>, "many">>;
|
|
54
54
|
confidence: z.ZodOptional<z.ZodNumber>;
|
|
55
55
|
weight: z.ZodOptional<z.ZodNumber>;
|
|
@@ -98,7 +98,7 @@ export declare const createEvidenceInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
98
98
|
confidence?: number | undefined;
|
|
99
99
|
weight?: number | undefined;
|
|
100
100
|
rationale?: string | undefined;
|
|
101
|
-
relation?: "supports" | "contradicts" | "
|
|
101
|
+
relation?: "supports" | "contradicts" | "contradicting" | "supporting" | undefined;
|
|
102
102
|
}, {
|
|
103
103
|
beliefId?: string | undefined;
|
|
104
104
|
beliefNodeId?: string | undefined;
|
|
@@ -107,7 +107,7 @@ export declare const createEvidenceInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
107
107
|
confidence?: number | undefined;
|
|
108
108
|
weight?: number | undefined;
|
|
109
109
|
rationale?: string | undefined;
|
|
110
|
-
relation?: "supports" | "contradicts" | "
|
|
110
|
+
relation?: "supports" | "contradicts" | "contradicting" | "supporting" | undefined;
|
|
111
111
|
}>, "many">>;
|
|
112
112
|
confidence: z.ZodOptional<z.ZodNumber>;
|
|
113
113
|
weight: z.ZodOptional<z.ZodNumber>;
|
|
@@ -156,7 +156,7 @@ export declare const createEvidenceInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
156
156
|
confidence?: number | undefined;
|
|
157
157
|
weight?: number | undefined;
|
|
158
158
|
rationale?: string | undefined;
|
|
159
|
-
relation?: "supports" | "contradicts" | "
|
|
159
|
+
relation?: "supports" | "contradicts" | "contradicting" | "supporting" | undefined;
|
|
160
160
|
}, {
|
|
161
161
|
beliefId?: string | undefined;
|
|
162
162
|
beliefNodeId?: string | undefined;
|
|
@@ -165,7 +165,7 @@ export declare const createEvidenceInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
165
165
|
confidence?: number | undefined;
|
|
166
166
|
weight?: number | undefined;
|
|
167
167
|
rationale?: string | undefined;
|
|
168
|
-
relation?: "supports" | "contradicts" | "
|
|
168
|
+
relation?: "supports" | "contradicts" | "contradicting" | "supporting" | undefined;
|
|
169
169
|
}>, "many">>;
|
|
170
170
|
confidence: z.ZodOptional<z.ZodNumber>;
|
|
171
171
|
weight: z.ZodOptional<z.ZodNumber>;
|
|
@@ -214,7 +214,7 @@ export declare const createEvidenceInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
214
214
|
confidence?: number | undefined;
|
|
215
215
|
weight?: number | undefined;
|
|
216
216
|
rationale?: string | undefined;
|
|
217
|
-
relation?: "supports" | "contradicts" | "
|
|
217
|
+
relation?: "supports" | "contradicts" | "contradicting" | "supporting" | undefined;
|
|
218
218
|
}, {
|
|
219
219
|
beliefId?: string | undefined;
|
|
220
220
|
beliefNodeId?: string | undefined;
|
|
@@ -223,7 +223,7 @@ export declare const createEvidenceInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
223
223
|
confidence?: number | undefined;
|
|
224
224
|
weight?: number | undefined;
|
|
225
225
|
rationale?: string | undefined;
|
|
226
|
-
relation?: "supports" | "contradicts" | "
|
|
226
|
+
relation?: "supports" | "contradicts" | "contradicting" | "supporting" | undefined;
|
|
227
227
|
}>, "many">>;
|
|
228
228
|
confidence: z.ZodOptional<z.ZodNumber>;
|
|
229
229
|
weight: z.ZodOptional<z.ZodNumber>;
|
|
@@ -272,7 +272,7 @@ export declare const createEvidenceInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
272
272
|
confidence?: number | undefined;
|
|
273
273
|
weight?: number | undefined;
|
|
274
274
|
rationale?: string | undefined;
|
|
275
|
-
relation?: "supports" | "contradicts" | "
|
|
275
|
+
relation?: "supports" | "contradicts" | "contradicting" | "supporting" | undefined;
|
|
276
276
|
}, {
|
|
277
277
|
beliefId?: string | undefined;
|
|
278
278
|
beliefNodeId?: string | undefined;
|
|
@@ -281,7 +281,7 @@ export declare const createEvidenceInputSchema: z.ZodEffects<z.ZodObject<{
|
|
|
281
281
|
confidence?: number | undefined;
|
|
282
282
|
weight?: number | undefined;
|
|
283
283
|
rationale?: string | undefined;
|
|
284
|
-
relation?: "supports" | "contradicts" | "
|
|
284
|
+
relation?: "supports" | "contradicts" | "contradicting" | "supporting" | undefined;
|
|
285
285
|
}>, "many">>;
|
|
286
286
|
confidence: z.ZodOptional<z.ZodNumber>;
|
|
287
287
|
weight: z.ZodOptional<z.ZodNumber>;
|
|
@@ -332,7 +332,7 @@ export declare const createEvidenceProjection: import("./projection-dsl.js").Pro
|
|
|
332
332
|
confidence?: number | undefined;
|
|
333
333
|
weight?: number | undefined;
|
|
334
334
|
rationale?: string | undefined;
|
|
335
|
-
relation?: "supports" | "contradicts" | "
|
|
335
|
+
relation?: "supports" | "contradicts" | "contradicting" | "supporting" | undefined;
|
|
336
336
|
}, {
|
|
337
337
|
beliefId?: string | undefined;
|
|
338
338
|
beliefNodeId?: string | undefined;
|
|
@@ -341,7 +341,7 @@ export declare const createEvidenceProjection: import("./projection-dsl.js").Pro
|
|
|
341
341
|
confidence?: number | undefined;
|
|
342
342
|
weight?: number | undefined;
|
|
343
343
|
rationale?: string | undefined;
|
|
344
|
-
relation?: "supports" | "contradicts" | "
|
|
344
|
+
relation?: "supports" | "contradicts" | "contradicting" | "supporting" | undefined;
|
|
345
345
|
}>, "many">>;
|
|
346
346
|
confidence: z.ZodOptional<z.ZodNumber>;
|
|
347
347
|
weight: z.ZodOptional<z.ZodNumber>;
|
|
@@ -90,7 +90,7 @@ export declare const projections: {
|
|
|
90
90
|
confidence?: number | undefined;
|
|
91
91
|
weight?: number | undefined;
|
|
92
92
|
rationale?: string | undefined;
|
|
93
|
-
relation?: "supports" | "contradicts" | "
|
|
93
|
+
relation?: "supports" | "contradicts" | "contradicting" | "supporting" | undefined;
|
|
94
94
|
}, {
|
|
95
95
|
beliefId?: string | undefined;
|
|
96
96
|
beliefNodeId?: string | undefined;
|
|
@@ -99,7 +99,7 @@ export declare const projections: {
|
|
|
99
99
|
confidence?: number | undefined;
|
|
100
100
|
weight?: number | undefined;
|
|
101
101
|
rationale?: string | undefined;
|
|
102
|
-
relation?: "supports" | "contradicts" | "
|
|
102
|
+
relation?: "supports" | "contradicts" | "contradicting" | "supporting" | undefined;
|
|
103
103
|
}>, "many">>;
|
|
104
104
|
confidence: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
105
105
|
weight: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -33,6 +33,10 @@ export declare const TENANT_CLIENT_INSTALLABLE_PACKAGES: readonly [{
|
|
|
33
33
|
readonly packageName: "@lucern/auth";
|
|
34
34
|
readonly role: "sdk_dependency";
|
|
35
35
|
readonly directTenantImport: false;
|
|
36
|
+
}, {
|
|
37
|
+
readonly packageName: "@lucern/boundary";
|
|
38
|
+
readonly role: "sdk_dependency";
|
|
39
|
+
readonly directTenantImport: false;
|
|
36
40
|
}, {
|
|
37
41
|
readonly packageName: "@lucern/cli";
|
|
38
42
|
readonly role: "developer_tool";
|
|
@@ -180,7 +184,7 @@ export declare const TENANT_CLIENT_INSTALL_PROFILES: readonly [{
|
|
|
180
184
|
}, {
|
|
181
185
|
readonly id: "full_suite";
|
|
182
186
|
readonly description: "Full coherent Lucern package suite for design-partner repos that want every published runtime, tool, component, test, and config package pinned together.";
|
|
183
|
-
readonly packageNames: readonly ("@lucern/sdk" | "@lucern/access-control" | "@lucern/agent" | "@lucern/auth" | "@lucern/cli" | "@lucern/client-core" | "@lucern/confidence" | "@lucern/config" | "@lucern/contracts" | "@lucern/control-plane" | "@lucern/developer-kit" | "@lucern/events" | "@lucern/graph-primitives" | "@lucern/graph-sync" | "@lucern/mcp" | "@lucern/pack-host" | "@lucern/pack-installer" | "@lucern/proof-compiler" | "@lucern/react" | "@lucern/reasoning-kernel" | "@lucern/secrets" | "@lucern/server-core" | "@lucern/testing" | "@lucern/transport-core" | "@lucern/types")[];
|
|
187
|
+
readonly packageNames: readonly ("@lucern/sdk" | "@lucern/access-control" | "@lucern/agent" | "@lucern/auth" | "@lucern/boundary" | "@lucern/cli" | "@lucern/client-core" | "@lucern/confidence" | "@lucern/config" | "@lucern/contracts" | "@lucern/control-plane" | "@lucern/developer-kit" | "@lucern/events" | "@lucern/graph-primitives" | "@lucern/graph-sync" | "@lucern/mcp" | "@lucern/pack-host" | "@lucern/pack-installer" | "@lucern/proof-compiler" | "@lucern/react" | "@lucern/reasoning-kernel" | "@lucern/secrets" | "@lucern/server-core" | "@lucern/testing" | "@lucern/transport-core" | "@lucern/types")[];
|
|
184
188
|
readonly dependencyField: "mixed";
|
|
185
189
|
}];
|
|
186
190
|
export type TenantClientInstallProfileId = (typeof TENANT_CLIENT_INSTALL_PROFILES)[number]["id"];
|
|
@@ -56,6 +56,11 @@ var TENANT_CLIENT_INSTALLABLE_PACKAGES = [
|
|
|
56
56
|
role: "sdk_dependency",
|
|
57
57
|
directTenantImport: false
|
|
58
58
|
},
|
|
59
|
+
{
|
|
60
|
+
packageName: "@lucern/boundary",
|
|
61
|
+
role: "sdk_dependency",
|
|
62
|
+
directTenantImport: false
|
|
63
|
+
},
|
|
59
64
|
{
|
|
60
65
|
packageName: "@lucern/cli",
|
|
61
66
|
role: "developer_tool",
|