@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/index.d.ts
CHANGED
|
@@ -41,7 +41,7 @@ export { ClerkUserSearchResult, IdentityClientConfig, IdentitySummary, IdentityW
|
|
|
41
41
|
export { InfisicalRuntimeBootstrapConfig, InfisicalRuntimeEnv, InfisicalRuntimeError, InfisicalRuntimeFetch, InfisicalRuntimeHydrateOptions, InfisicalRuntimeHydrationResult, applyInfisicalRuntimeEnv, hydrateInfisicalRuntimeEnv, isInfisicalRuntimeDisabled, readInfisicalRuntimeBootstrap } from './infisicalRuntime.js';
|
|
42
42
|
export { ClaimJobInput, EnqueueJobInput, JOBS_FIELDS, JobRecord, JobRunRecord, JobStatus, JobsClientConfig, JobsResponse, JobsScope, RecordJobRunFinishInput, RecordJobRunStartInput, RetryJobInput, UpdateJobStatusInput, createJobsClient } from './jobsClient.js';
|
|
43
43
|
export { LearningClientConfig, createLearningClient } from './learningClient.js';
|
|
44
|
-
export { McProxyBindingRef, SecretBootstrapOptions, SecretResolverError, SecretResolverErrorCode, SecretResolverFetch, SecretResolverOptions, SecretResolverResult, resolveInfisicalSecretFromBinding } from '@lucern/secrets';
|
|
44
|
+
export { BrokeredSecretLeaseRef, BrokeredSecretRequest, BrokeredSecretResolverOptions, BrokeredSecretResolverResult, McProxyBindingRef, SecretBootstrapOptions, SecretBrokerClient, SecretResolverError, SecretResolverErrorCode, SecretResolverFetch, SecretResolverOptions, SecretResolverResult, requestBrokeredInfisicalSecret, resolveInfisicalSecretFromBinding } from '@lucern/secrets';
|
|
45
45
|
export { FUNCTION_SURFACE_METHOD_PATHS, FunctionSurfaceClientConfig, FunctionSurfaceInput, FunctionSurfaceResult, createFunctionSurfaceClient } from './functionSurface.js';
|
|
46
46
|
export { MODEL_RUNTIME_FIELDS, ModelFunctionSlot, ModelRegistryRecord, ModelRuntimeClientConfig, ModelRuntimeScope, ModelSlotsResponse, ModelsResponse, ResolveModelSlotInput, UpdateModelSlotConfigInput, createModelRuntimeClient } from './modelRuntimeClient.js';
|
|
47
47
|
export { OntologyBindingInput, OntologyClientConfig, OntologyDefinitionInput, OntologyDefinitionUpdateInput, OntologyVersionInput, createOntologyClient } from './ontologyClient.js';
|
package/dist/index.js
CHANGED
|
@@ -6,8 +6,8 @@ import * as graphIntel_star from '@lucern/reasoning-kernel/graphIntel';
|
|
|
6
6
|
import { listGraphIntelligenceQueries, isGraphIntelligenceQueryMode, getGraphIntelligenceQuery, fillGraphIntelligencePromptTemplate, GRAPH_INTELLIGENCE_QUICK_QUERIES, GRAPH_INTELLIGENCE_QUERY_MODES, GRAPH_INTELLIGENCE_QUERY_CATEGORIES, GRAPH_INTELLIGENCE_QUERY_CATALOG_VERSION, GRAPH_INTELLIGENCE_QUERIES_WITH_TOOLS, GRAPH_INTELLIGENCE_QUERIES, GRAPH_INTELLIGENCE_PUBLIC_TOOL_NAMES, GRAPH_INTELLIGENCE_MODE_TOOL_NAMES } from '@lucern/contracts/graph-intelligence.contract';
|
|
7
7
|
export { GRAPH_INTELLIGENCE_MODE_TOOL_NAMES, GRAPH_INTELLIGENCE_PUBLIC_TOOL_NAMES, GRAPH_INTELLIGENCE_QUERIES, GRAPH_INTELLIGENCE_QUERIES_WITH_TOOLS, GRAPH_INTELLIGENCE_QUERY_CATALOG_VERSION, GRAPH_INTELLIGENCE_QUERY_CATEGORIES, GRAPH_INTELLIGENCE_QUERY_MODES, GRAPH_INTELLIGENCE_QUICK_QUERIES, fillGraphIntelligencePromptTemplate, getGraphIntelligenceQuery, isGraphIntelligenceQueryMode, listGraphIntelligenceQueries } from '@lucern/contracts/graph-intelligence.contract';
|
|
8
8
|
import { INFISICAL_RUNTIME_MANIFEST, INFISICAL_RUNTIME_DEFAULT_PROJECT_ID, INFISICAL_RUNTIME_DEFAULT_API_URL, findInfisicalRuntimeSurface, findInfisicalRuntimePath, GENERATED_INFISICAL_RUNTIME_ENV } from '@lucern/contracts';
|
|
9
|
-
import { resolveInfisicalSecretFromBinding, SecretResolverError } from '@lucern/secrets';
|
|
10
|
-
export { SecretResolverError, resolveInfisicalSecretFromBinding } from '@lucern/secrets';
|
|
9
|
+
import { resolveInfisicalSecretFromBinding, requestBrokeredInfisicalSecret, SecretResolverError } from '@lucern/secrets';
|
|
10
|
+
export { SecretResolverError, requestBrokeredInfisicalSecret, resolveInfisicalSecretFromBinding } from '@lucern/secrets';
|
|
11
11
|
|
|
12
12
|
var __defProp = Object.defineProperty;
|
|
13
13
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -225,6 +225,7 @@ __export(src_exports, {
|
|
|
225
225
|
randomIdempotencyKey: () => randomIdempotencyKey,
|
|
226
226
|
readInfisicalRuntimeBootstrap: () => readInfisicalRuntimeBootstrap,
|
|
227
227
|
registerCustomTool: () => registerCustomTool,
|
|
228
|
+
requestBrokeredInfisicalSecret: () => requestBrokeredInfisicalSecret,
|
|
228
229
|
resolveDeliveryFailureStatus: () => resolveDeliveryFailureStatus,
|
|
229
230
|
resolveInfisicalSecretFromBinding: () => resolveInfisicalSecretFromBinding,
|
|
230
231
|
resolveText: () => resolveText,
|
|
@@ -4074,6 +4075,8 @@ function createTasksFacade(config = {}) {
|
|
|
4074
4075
|
description: input.description,
|
|
4075
4076
|
priority: input.priority,
|
|
4076
4077
|
status: input.status,
|
|
4078
|
+
assigneeId: input.assigneeId,
|
|
4079
|
+
blockedReason: input.blockedReason,
|
|
4077
4080
|
linkedBeliefId: input.linkedBeliefId,
|
|
4078
4081
|
linkedQuestionId: input.linkedQuestionId,
|
|
4079
4082
|
linkedWorktreeId: input.linkedWorktreeId,
|
|
@@ -7507,7 +7510,7 @@ function createToolRegistryClient(config = {}) {
|
|
|
7507
7510
|
}
|
|
7508
7511
|
|
|
7509
7512
|
// src/version.ts
|
|
7510
|
-
var LUCERN_SDK_VERSION = "0.3.0-alpha.
|
|
7513
|
+
var LUCERN_SDK_VERSION = "0.3.0-alpha.15";
|
|
7511
7514
|
|
|
7512
7515
|
// src/workflowClient.ts
|
|
7513
7516
|
function normalizeLensQuery(value) {
|