@codemation/core 0.7.0 → 0.8.0
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 +22 -0
- package/dist/{EngineRuntimeRegistration.types-_M7KFD3D.d.ts → EngineRuntimeRegistration.types-BP6tsaNP.d.ts} +4 -2
- package/dist/{EngineWorkflowRunnerService-D0Cwngv7.d.cts → EngineWorkflowRunnerService-DzOCa1BW.d.cts} +4 -2
- package/dist/{InMemoryRunDataFactory-BIWx6e02.d.cts → InMemoryRunDataFactory-1iz7_SnO.d.cts} +24 -4
- package/dist/{workflowActivationPolicy-6V3OJD3N.cjs → InMemoryRunEventBusRegistry-B0_C4OnP.cjs} +1 -16
- package/dist/InMemoryRunEventBusRegistry-B0_C4OnP.cjs.map +1 -0
- package/dist/{workflowActivationPolicy-Td9HTOuD.js → InMemoryRunEventBusRegistry-C2U83Hmv.js} +2 -11
- package/dist/InMemoryRunEventBusRegistry-C2U83Hmv.js.map +1 -0
- package/dist/{RunIntentService-CuXAIO6_.d.ts → RunIntentService-BqhmdoA1.d.ts} +231 -3
- package/dist/{RunIntentService-5k0p-J67.d.cts → RunIntentService-S-1lW-gS.d.cts} +203 -3
- package/dist/bootstrap/index.cjs +4 -2
- package/dist/bootstrap/index.d.cts +24 -5
- package/dist/bootstrap/index.d.ts +4 -4
- package/dist/bootstrap/index.js +3 -3
- package/dist/{bootstrap-D-TDU9Lu.cjs → bootstrap-BaN6hZ5I.cjs} +6 -3
- package/dist/bootstrap-BaN6hZ5I.cjs.map +1 -0
- package/dist/{bootstrap-BhYxSivA.js → bootstrap-d_BMaDT4.js} +6 -3
- package/dist/bootstrap-d_BMaDT4.js.map +1 -0
- package/dist/{index-BnJ7_IrO.d.ts → index-CVs9rVhl.d.ts} +36 -6
- package/dist/index.cjs +48 -83
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +23 -4
- package/dist/index.d.ts +3 -3
- package/dist/index.js +27 -74
- package/dist/index.js.map +1 -1
- package/dist/{runtime-CJnObwsU.js → runtime-DUW6tIJ1.js} +423 -33
- package/dist/runtime-DUW6tIJ1.js.map +1 -0
- package/dist/{runtime-3YVDd2vY.cjs → runtime-Dvo2ru5A.cjs} +548 -32
- package/dist/runtime-Dvo2ru5A.cjs.map +1 -0
- package/dist/testing.cjs +6 -6
- package/dist/testing.cjs.map +1 -1
- package/dist/testing.d.cts +2 -2
- package/dist/testing.d.ts +2 -2
- package/dist/testing.js +3 -3
- package/package.json +1 -1
- package/src/ai/AiHost.ts +2 -0
- package/src/ai/CallableToolConfig.ts +28 -3
- package/src/bootstrap/index.ts +6 -1
- package/src/bootstrap/runtime/EngineRuntimeRegistrar.ts +1 -0
- package/src/bootstrap/runtime/EngineRuntimeRegistration.types.ts +3 -0
- package/src/contracts/CodemationTelemetryAttributeNames.ts +12 -0
- package/src/contracts/CodemationTelemetryMetricNames.ts +7 -0
- package/src/contracts/CostCatalogContract.ts +16 -0
- package/src/contracts/CostTrackingTelemetryContract.ts +47 -0
- package/src/contracts/GenAiTelemetryAttributeNames.ts +10 -0
- package/src/contracts/NoOpCostTrackingTelemetry.ts +16 -0
- package/src/contracts/NoOpCostTrackingTelemetryFactory.ts +9 -0
- package/src/contracts/NoOpExecutionTelemetry.ts +26 -0
- package/src/contracts/NoOpExecutionTelemetryFactory.ts +16 -0
- package/src/contracts/NoOpNodeExecutionTelemetry.ts +15 -0
- package/src/contracts/NoOpTelemetryArtifactReference.ts +9 -0
- package/src/contracts/NoOpTelemetrySpanScope.ts +22 -0
- package/src/contracts/index.ts +1 -0
- package/src/contracts/runTypes.ts +4 -1
- package/src/contracts/runtimeTypes.ts +7 -0
- package/src/contracts/telemetryTypes.ts +105 -0
- package/src/contracts/workflowTypes.ts +9 -0
- package/src/events/EventPublishingWorkflowExecutionRepository.ts +1 -1
- package/src/execution/CatalogBackedCostTrackingTelemetry.ts +81 -0
- package/src/execution/CatalogBackedCostTrackingTelemetryFactory.ts +12 -0
- package/src/execution/DefaultExecutionContextFactory.ts +23 -0
- package/src/execution/ExecutionTelemetryCostTrackingDecoratorFactory.ts +84 -0
- package/src/execution/NodeActivationRequestComposer.ts +1 -0
- package/src/execution/NodeExecutionSnapshotFactory.ts +2 -0
- package/src/execution/StaticCostCatalog.ts +22 -0
- package/src/execution/WorkflowRunExecutionContextFactory.ts +2 -0
- package/src/execution/index.ts +4 -0
- package/src/orchestration/NodeExecutionRequestHandlerService.ts +1 -0
- package/src/orchestration/RunContinuationService.ts +4 -0
- package/src/orchestration/RunStartService.ts +2 -0
- package/src/policies/storage/RunPolicySnapshotFactory.ts +9 -0
- package/src/runStorage/InMemoryWorkflowExecutionRepository.ts +4 -2
- package/src/types/index.ts +5 -0
- package/dist/bootstrap-BhYxSivA.js.map +0 -1
- package/dist/bootstrap-D-TDU9Lu.cjs.map +0 -1
- package/dist/runtime-3YVDd2vY.cjs.map +0 -1
- package/dist/runtime-CJnObwsU.js.map +0 -1
- package/dist/workflowActivationPolicy-6V3OJD3N.cjs.map +0 -1
- package/dist/workflowActivationPolicy-Td9HTOuD.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { $ as
|
|
2
|
-
import { $ as
|
|
3
|
-
export { ActivationIdFactory, AgentAttachmentRole, AgentCanvasPresentation, AgentConfigInspector, AgentConnectionCredentialSource, AgentConnectionNodeCollector, AgentConnectionNodeDescriptor, AgentConnectionNodeRole, AgentGuardrailConfig, AgentGuardrailDefaults, AgentMessageBuildArgs, AgentMessageConfig, AgentMessageConfigNormalizer, AgentMessageDto, AgentMessageLine, AgentMessageRole, AgentMessageTemplate, AgentMessageTemplateContent, AgentModelInvocationOptions, AgentNodeConfig, AgentTool, AgentToolCall, AgentToolCallPlanner, AgentToolDefinition, AgentToolExecuteArgs, AgentToolFactory, AgentToolToken, AgentTurnLimitBehavior, AllWorkflowsActiveWorkflowActivationPolicy, AnyCredentialType, AnyRunnableNodeConfig, AnyTriggerNodeConfig, BatchId, BinaryAttachment, BinaryAttachmentCreateRequest, BinaryBody, BinaryPreviewKind, BinaryStorage, BinaryStorageReadResult, BinaryStorageStatResult, BinaryStorageWriteRequest, BinaryStorageWriteResult, BooleanWhenOverloads, BranchMoreArgs, BranchOutputGuard, BranchStepsArg, CallableToolConfig, CallableToolConfigOptions, CallableToolExecuteHandler, CallableToolFactory, CallableToolKindToken, ChainCursor, ChatModelConfig, ChatModelFactory, ChatModelStructuredOutputOptions, Clock, ConnectionInvocationAppendArgs, ConnectionInvocationId, ConnectionInvocationIdFactory, ConnectionInvocationKind, ConnectionInvocationRecord, ConnectionNodeIdFactory, Container, CoreTokens, CredentialAdvancedSectionPresentation, CredentialAuthDefinition, CredentialBinding, CredentialBindingKey, CredentialFieldSchema, CredentialHealth, CredentialHealthStatus, CredentialHealthTester, CredentialInstanceId, CredentialInstanceRecord, CredentialJsonRecord, CredentialMaterialSourceKind, CredentialOAuth2AuthDefinition, CredentialOAuth2ScopesFromPublicConfig, CredentialRequirement, CredentialResolverFactory, CredentialSessionFactory, CredentialSessionFactoryArgs, CredentialSessionService, CredentialSetupStatus, CredentialType, CredentialTypeDefinition, CredentialTypeId, CredentialTypeRegistry, CredentialUnboundError, CurrentStateExecutionRequest, DefaultAsyncSleeper, DefaultExecutionBinaryService, DefaultExecutionContextFactory, DefaultWorkflowGraphFactory, DefineBatchNodeOptions, DefineCredentialOptions, DefineNodeExecuteArgs, DefineNodeOptions, DefinedNode, DefinedNodeConfigInput, DefinedNodeCredentialAccessors, DefinedNodeCredentialBinding, DefinedNodeCredentialBindings, DefinedNodeRegistry, DefinedNodeRunContext, DependencyContainer, Disposable, Edge, EngineDeps, EngineExecutionLimitsPolicy, EngineExecutionLimitsPolicyConfig, EngineHost, EngineRunCounters, EventPublishingWorkflowExecutionRepository, ExecutableTriggerNode, ExecutionBinaryService, ExecutionContext, ExecutionContextFactory, ExecutionFrontierPlan, ExecutionInstanceDto, ExecutionInstanceId, ExecutionMode, ExecutionPayloadPolicyFields, ExpRetryPolicy, ExponentialRetryPolicySpec, Expr, FixedRetryPolicySpec, HttpMethod, InMemoryBinaryStorage, InMemoryLiveWorkflowRepository, InMemoryRunDataFactory, InMemoryRunEventBus, InProcessRetryRunner, InjectableRuntimeDecoratorComposer, InjectionToken, InputPortKey, Item, ItemBinary, ItemExpr, ItemExprArgs, ItemExprCallback, ItemExprContext, ItemExprResolvedContext, ItemExprResolver, ItemNode, Items, ItemsInputNormalizer, JsonArray, JsonNonArray, JsonObject, JsonPrimitive, JsonValue, LangChainChatModelLike, LangChainStructuredOutputModelLike, Lifecycle, LiveWorkflowRepository, MultiInputNode, MutableRunData, NoRetryPolicy, NodeActivationContinuation, NodeActivationId, NodeActivationReceipt, NodeActivationRequest, NodeActivationRequestBase, NodeActivationScheduler, NodeBackedToolConfig, NodeBackedToolConfigOptions, NodeBackedToolInputMapper, NodeBackedToolInputMapperArgs, NodeBackedToolOutputMapper, NodeBackedToolOutputMapperArgs, NodeBinaryAttachmentService, NodeConfigBase, NodeConnectionName, NodeDefinition, NodeErrorHandler, NodeErrorHandlerArgs, NodeErrorHandlerSpec, NodeEventPublisher, NodeExecutionContext, NodeExecutionError, NodeExecutionRequest, NodeExecutionRequestHandler, NodeExecutionScheduler, NodeExecutionSnapshot, NodeExecutionStatePublisher, NodeExecutionStatus, NodeExecutor, NodeId, NodeIdRef, NodeInputsByPort, NodeKind, NodeOffloadPolicy, NodeOutputNormalizer, NodeOutputs, NodeRef, NodeResolver, NodeSchedulerDecision, NoneRetryPolicySpec, OAuth2ProviderFromPublicConfig, OutputPortKey, PairedItemRef, Param, ParamDeep, ParentExecutionRef, PayloadStorageKind, PendingNodeExecution, PersistedExecutionInstanceKind, PersistedExecutionInstanceRecord, PersistedMutableNodeState, PersistedMutableRunState, PersistedRunControlState, PersistedRunPolicySnapshot, PersistedRunSchedulingState, PersistedRunSlotProjectionRecord, PersistedRunState, PersistedRunWorkItemKind, PersistedRunWorkItemRecord, PersistedRuntimeTypeDecoratorOptions, PersistedRuntimeTypeKind, PersistedRuntimeTypeMetadata, PersistedRuntimeTypeMetadataStore, PersistedRuntimeTypeNameResolver, PersistedTokenId, PersistedTriggerSetupState, PersistedWorkflowSnapshot, PersistedWorkflowSnapshotNode, PersistedWorkflowTokenRegistryLike, PinnedNodeOutputsByPort, PortsEmission, PreparedNodeActivationDispatch, RegistrationOptions, RetryPolicy, RetryPolicySpec, RunCompletionNotifier, RunCurrentState, RunDataFactory, RunDataSnapshot, RunEvent, RunEventBus, RunEventPublisherDeps, RunEventSubscription, RunExecutionOptions, RunFinishedAtFactory, RunId, RunIdFactory, RunIntentService, RunPruneCandidate, RunQueueEntry, RunResult, RunRevision, RunSlotProjectionState, RunStateResetRequest, RunStatus, RunStopCondition, RunSummary, RunnableNode, RunnableNodeConfig, RunnableNodeExecuteArgs, RunnableNodeInputJson, RunnableNodeOutputJson, RunnableOutputBehaviorResolver, SlotExecutionStateDto, StackTraceCallSitePathResolver, StepSequenceOutput, SystemClock, TestableTriggerNode, Tool, ToolConfig, ToolExecuteArgs, TriggerCleanupHandle, TriggerInstanceId, TriggerNode, TriggerNodeConfig, TriggerNodeOutputJson, TriggerNodeSetupState, TriggerRuntimeDiagnostics, TriggerSetupContext, TriggerSetupStateFor, TriggerSetupStateRepository, TriggerTestItemsContext, TypeToken, UnavailableBinaryStorage, UpstreamRefPlaceholder, ValidStepSequence, WebhookControlSignal, WebhookInvocationMatch, WebhookRunResult, WebhookTriggerMatcher, WebhookTriggerResolution, WebhookTriggerRoutingDiagnostics, WhenBuilder, WorkItemId, WorkItemStatus, WorkflowActivationPolicy, WorkflowBuilder, WorkflowDefinition, WorkflowDetailSelectionState, WorkflowErrorContext, WorkflowErrorHandler, WorkflowErrorHandlerSpec, WorkflowExecutableNodeClassifier, WorkflowExecutableNodeClassifierFactory, WorkflowExecutionListingRepository, WorkflowExecutionPruneRepository, WorkflowExecutionRepository, WorkflowGraph, WorkflowGraphFactory, WorkflowId, WorkflowNodeConnection, WorkflowNodeInstanceFactory, WorkflowPolicyRuntimeDefaults, WorkflowPrunePolicySpec, WorkflowRepository, WorkflowRunDetailDto, WorkflowRunnerResolver, WorkflowRunnerService, WorkflowSnapshotFactory, WorkflowSnapshotResolver, WorkflowStoragePolicyDecisionArgs, WorkflowStoragePolicyMode, WorkflowStoragePolicyResolver, WorkflowStoragePolicySpec, ZodSchemaAny, branchRef, callableTool, chatModel, container, defineBatchNode, defineCredential, defineNode, delay, emitPorts, getOriginIndexFromItem, getPersistedRuntimeTypeMetadata, inject, injectAll, injectable, instanceCachingFactory, instancePerContainerCachingFactory, isItemExpr, isPortsEmission, isUnbrandedPortsEmissionShape, itemExpr, node, nodeRef, predicateAwareClassFactory, registry, resolveItemExprsForExecution, resolveItemExprsInUnknown, runnableNodeInputType, runnableNodeOutputType, singleton, tool, triggerNodeOutputType, triggerNodeSetupStateType };
|
|
1
|
+
import { $ as Expr, $i as CredentialJsonRecord, $n as NodeExecutionContext, $r as RunCompletionNotifier, $t as RunIdFactory, A as ExecutionInstanceDto, Aa as singleton, Ai as NoOpExecutionTelemetryFactory, An as RetryPolicySpec, Ar as WebhookTriggerRoutingDiagnostics, At as MutableRunData, B as RunSlotProjectionState, Bi as CostTrackingTelemetryMetricNames, Bn as ExecutableTriggerNode, Br as NodeExecutionSnapshot, Bt as NodeKind, C as BranchOutputGuard, Ca as inject, Ci as TelemetryScope, Cn as runnableNodeInputType, Cr as WorkflowSnapshotResolver, Ct as ItemBinary, D as RunFinishedAtFactory, Da as instancePerContainerCachingFactory, Di as CodemationTelemetryMetricNames, Dn as ExponentialRetryPolicySpec, Dr as WebhookInvocationMatch, Dt as JsonObject, E as ValidStepSequence, Ea as instanceCachingFactory, Ei as TelemetrySpanScope, En as triggerNodeSetupStateType, Er as WebhookControlSignal, Et as JsonNonArray, F as PersistedExecutionInstanceRecord, Fa as RunEvent, Fi as CostTrackingComponent, Fn as BinaryStorageStatResult, Fr as ConnectionInvocationRecord, Ft as NodeErrorHandler, G as WorkflowRunDetailDto, Gi as CredentialBinding, Gn as LiveWorkflowRepository, Gr as PersistedMutableRunState, Gt as OutputPortKey, H as WorkItemId, Hi as AnyCredentialType, Hn as ExecutionContext, Hr as NodeInputsByPort, Ht as NodeOutputs, I as PersistedRunSlotProjectionRecord, Ia as RunEventBus, Ii as CostTrackingPriceQuote, In as BinaryStorageWriteRequest, Ir as CurrentStateExecutionRequest, It as NodeErrorHandlerArgs, J as CostCatalog, Ji as CredentialHealth, Jn as NodeActivationReceipt, Jr as PersistedRunState, Jt as PersistedRunPolicySnapshot, K as NoOpCostTrackingTelemetryFactory, Ki as CredentialBindingKey, Kn as MultiInputNode, Kr as PersistedRunControlState, Kt as PairedItemRef, L as PersistedRunWorkItemKind, La as RunEventSubscription, Li as CostTrackingTelemetry, Ln as BinaryStorageWriteResult, Lr as EngineRunCounters, Lt as NodeErrorHandlerSpec, M as ExecutionPayloadPolicyFields, Mi as NoOpNodeExecutionTelemetry, Mn as BinaryBody, Mr as WorkflowActivationPolicy, Mt as NodeConfigBase, N as PayloadStorageKind, Na as EngineExecutionLimitsPolicy, Ni as NoOpTelemetrySpanScope, Nn as BinaryStorage, Nr as ConnectionInvocationAppendArgs, Nt as NodeConnectionName, O as BatchId, Oa as predicateAwareClassFactory, Oi as GenAiTelemetryAttributeNames, On as FixedRetryPolicySpec, Or as WebhookTriggerMatcher, Ot as JsonPrimitive, P as PersistedExecutionInstanceKind, Pa as EngineExecutionLimitsPolicyConfig, Pi as NoOpTelemetryArtifactReference, Pn as BinaryStorageReadResult, Pr as ConnectionInvocationId, Pt as NodeDefinition, Q as NoRetryPolicy, Qi as CredentialInstanceRecord, Qn as NodeBinaryAttachmentService, Qr as PinnedNodeOutputsByPort, Qt as RunId, R as PersistedRunWorkItemRecord, Ri as CostTrackingTelemetryAttributeNames, Rn as EngineDeps, Rr as ExecutionFrontierPlan, Rt as NodeId, S as BranchMoreArgs, Sa as delay, Si as TelemetryMetricRecord, Sn as nodeRef, Sr as WorkflowSnapshotFactory, St as Item, T as StepSequenceOutput, Ta as injectable, Ti as TelemetrySpanEventRecord, Tn as triggerNodeOutputType, Tr as TriggerInstanceId, Tt as JsonArray, U as WorkItemStatus, Ui as CredentialAdvancedSectionPresentation, Un as ExecutionContextFactory, Ur as PendingNodeExecution, Ut as NodeRef, V as SlotExecutionStateDto, Vi as CostTrackingUsageRecord, Vn as ExecutionBinaryService, Vr as NodeExecutionStatus, Vt as NodeOffloadPolicy, W as WorkflowDetailSelectionState, Wi as CredentialAuthDefinition, Wn as ItemNode, Wr as PersistedMutableNodeState, Wt as NodeSchedulerDecision, X as ExpRetryPolicy, Xi as CredentialHealthTester, Xn as NodeActivationRequestBase, Xr as PersistedWorkflowSnapshotNode, Xt as RunDataFactory, Y as CostCatalogEntry, Yi as CredentialHealthStatus, Yn as NodeActivationRequest, Yr as PersistedWorkflowSnapshot, Yt as PersistedTokenId, Z as RetryPolicy, Zi as CredentialInstanceId, Zn as NodeActivationScheduler, Zr as PersistedWorkflowTokenRegistryLike, Zt as RunDataSnapshot, _ as ChainCursor, _a as InjectionToken, _i as TelemetryArtifactAttachment, _n as WorkflowStoragePolicyDecisionArgs, _r as TriggerTestItemsContext, _t as BinaryAttachment, aa as CredentialSessionFactoryArgs, ai as RunResult, an as TriggerNodeSetupState, ar as NodeResolver, at as ItemExprContext, b as AnyTriggerNodeConfig, ba as TypeToken, bi as TelemetryAttributes, bn as WorkflowStoragePolicySpec, br as WorkflowRunnerResolver, bt as ExecutionMode, ca as CredentialType, ci as RunStopCondition, cn as WorkflowErrorContext, cr as RunnableNode, ct as itemExpr, d as DefaultWorkflowGraphFactory, da as CredentialTypeRegistry, di as WorkflowExecutionListingRepository, dn as WorkflowGraph, dr as TriggerCleanupHandle, dt as getOriginIndexFromItem, ea as CredentialMaterialSourceKind, ei as RunCurrentState, en as RunnableNodeConfig, er as NodeExecutionRequest, et as Param, f as WorkflowExecutableNodeClassifierFactory, fa as CredentialUnboundError, fi as WorkflowExecutionPruneRepository, fn as WorkflowGraphFactory, fr as TriggerNode, ft as PortsEmission, g as WorkflowBuilder, ga as Disposable, gi as NodeExecutionTelemetry, gn as WorkflowPrunePolicySpec, gr as TriggerSetupStateRepository, gt as ActivationIdFactory, h as ConnectionInvocationIdFactory, ha as DependencyContainer, hi as ExecutionTelemetryFactory, hn as WorkflowPolicyRuntimeDefaults, hr as TriggerSetupStateFor, ht as isUnbrandedPortsEmissionShape, ia as CredentialSessionFactory, ii as RunQueueEntry, in as TriggerNodeOutputJson, ir as NodeExecutor, it as ItemExprCallback, j as ExecutionInstanceId, ja as CoreTokens, ji as NoOpExecutionTelemetry, jn as BinaryAttachmentCreateRequest, jr as AllWorkflowsActiveWorkflowActivationPolicy, jt as NodeActivationId, k as ConnectionInvocationKind, ka as registry, ki as CodemationTelemetryAttributeNames, kn as NoneRetryPolicySpec, kr as WebhookTriggerResolution, kt as JsonValue, la as CredentialTypeDefinition, li as RunSummary, ln as WorkflowErrorHandler, lr as RunnableNodeExecuteArgs, lt as resolveItemExprsForExecution, m as ConnectionNodeIdFactory, ma as Container, mi as ExecutionTelemetry, mn as WorkflowNodeConnection, mr as TriggerSetupContext, mt as isPortsEmission, n as InMemoryLiveWorkflowRepository, na as CredentialOAuth2ScopesFromPublicConfig, ni as RunExecutionOptions, nn as RunnableNodeOutputJson, nr as NodeExecutionScheduler, nt as ItemExpr, oa as CredentialSessionService, oi as RunStateResetRequest, on as UpstreamRefPlaceholder, or as PersistedTriggerSetupState, ot as ItemExprResolvedContext, p as WorkflowExecutableNodeClassifier, pa as OAuth2ProviderFromPublicConfig, pi as WorkflowExecutionRepository, pn as WorkflowId, pr as TriggerRuntimeDiagnostics, pt as emitPorts, q as NoOpCostTrackingTelemetry, qi as CredentialFieldSchema, qn as NodeActivationContinuation, qr as PersistedRunSchedulingState, qt as ParentExecutionRef, ra as CredentialRequirement, ri as RunPruneCandidate, rn as TriggerNodeConfig, rr as NodeExecutionStatePublisher, rt as ItemExprArgs, sa as CredentialSetupStatus, si as RunStatus, sn as WorkflowDefinition, sr as PreparedNodeActivationDispatch, st as isItemExpr, t as RunIntentService, ta as CredentialOAuth2AuthDefinition, ti as RunEventPublisherDeps, tn as RunnableNodeInputJson, tr as NodeExecutionRequestHandler, tt as ParamDeep, ua as CredentialTypeId, ui as WebhookRunResult, un as WorkflowErrorHandlerSpec, ur as TestableTriggerNode, ut as resolveItemExprsInUnknown, v as WhenBuilder, va as Lifecycle, vi as TelemetryArtifactReference, vn as WorkflowStoragePolicyMode, vr as WorkflowNodeInstanceFactory, vt as BinaryPreviewKind, w as BranchStepsArg, wa as injectAll, wi as TelemetrySpanEnd, wn as runnableNodeOutputType, wr as HttpMethod, wt as Items, x as BooleanWhenOverloads, xa as container, xi as TelemetryChildSpanStart, xn as branchRef, xr as WorkflowRunnerService, xt as InputPortKey, y as AnyRunnableNodeConfig, ya as RegistrationOptions, yi as TelemetryAttributePrimitive, yn as WorkflowStoragePolicyResolver, yr as WorkflowRepository, yt as Edge, z as RunRevision, zi as CostTrackingTelemetryFactory, zn as EngineHost, zr as NodeExecutionError, zt as NodeIdRef } from "./RunIntentService-BqhmdoA1.js";
|
|
2
|
+
import { $ as ChatModelConfig, A as AgentConnectionNodeDescriptor, At as DefinedNodeCredentialAccessors, B as AgentMessageLine, Bt as NodeOutputNormalizer, C as PersistedRuntimeTypeDecoratorOptions, Ct as defineCredential, D as InMemoryRunEventBus, Dt as DefineNodeOptions, E as EventPublishingWorkflowExecutionRepository, Et as DefineNodeExecuteArgs, F as AgentGuardrailConfig, Ft as defineNode, G as AgentNodeConfig, Gt as DefaultExecutionContextFactory, H as AgentMessageTemplate, Ht as ItemExprResolver, I as AgentGuardrailDefaults, It as Clock, J as AgentToolCallPlanner, Jt as CredentialResolverFactory, K as AgentTool, Kt as DefaultAsyncSleeper, L as AgentMessageBuildArgs, Lt as SystemClock, M as callableTool, Mt as DefinedNodeCredentialBindings, N as AgentAttachmentRole, Nt as DefinedNodeRunContext, O as AgentConnectionCredentialSource, Ot as DefinedNode, P as AgentCanvasPresentation, Pt as defineBatchNode, Q as AgentTurnLimitBehavior, R as AgentMessageConfig, S as InjectableRuntimeDecoratorComposer, St as DefineCredentialOptions, T as PersistedRuntimeTypeMetadata, Tt as DefineBatchNodeOptions, U as AgentMessageTemplateContent, Ut as InProcessRetryRunner, V as AgentMessageRole, Vt as RunnableOutputBehaviorResolver, W as AgentModelInvocationOptions, X as AgentToolExecuteArgs, Y as AgentToolDefinition, Yt as NodeEventPublisher, Z as AgentToolToken, _ as node, _t as CallableToolFactory, at as NodeBackedToolInputMapper, b as PersistedRuntimeTypeNameResolver, bt as CallableToolExecuteHandler, ct as NodeBackedToolOutputMapperArgs, d as InMemoryBinaryStorage, dt as ToolExecuteArgs, et as ChatModelFactory, f as DefaultExecutionBinaryService, ft as ZodSchemaAny, g as getPersistedRuntimeTypeMetadata, gt as CallableToolKindToken, h as chatModel, ht as AgentToolFactory, it as NodeBackedToolConfigOptions, j as AgentConnectionNodeRole, jt as DefinedNodeCredentialBinding, k as AgentConnectionNodeCollector, kt as DefinedNodeConfigInput, lt as Tool, m as ItemsInputNormalizer, mt as AgentMessageConfigNormalizer, nt as LangChainChatModelLike, ot as NodeBackedToolInputMapperArgs, p as UnavailableBinaryStorage, pt as AgentConfigInspector, q as AgentToolCall, rt as LangChainStructuredOutputModelLike, st as NodeBackedToolOutputMapper, tt as ChatModelStructuredOutputOptions, u as InMemoryRunDataFactory, ut as ToolConfig, v as tool, vt as CallableToolConfig, w as PersistedRuntimeTypeKind, wt as DefinedNodeRegistry, x as PersistedRuntimeTypeMetadataStore, xt as NodeBackedToolConfig, y as StackTraceCallSitePathResolver, yt as CallableToolConfigOptions, z as AgentMessageDto } from "./index-CVs9rVhl.js";
|
|
3
|
+
export { ActivationIdFactory, AgentAttachmentRole, AgentCanvasPresentation, AgentConfigInspector, AgentConnectionCredentialSource, AgentConnectionNodeCollector, AgentConnectionNodeDescriptor, AgentConnectionNodeRole, AgentGuardrailConfig, AgentGuardrailDefaults, AgentMessageBuildArgs, AgentMessageConfig, AgentMessageConfigNormalizer, AgentMessageDto, AgentMessageLine, AgentMessageRole, AgentMessageTemplate, AgentMessageTemplateContent, AgentModelInvocationOptions, AgentNodeConfig, AgentTool, AgentToolCall, AgentToolCallPlanner, AgentToolDefinition, AgentToolExecuteArgs, AgentToolFactory, AgentToolToken, AgentTurnLimitBehavior, AllWorkflowsActiveWorkflowActivationPolicy, AnyCredentialType, AnyRunnableNodeConfig, AnyTriggerNodeConfig, BatchId, BinaryAttachment, BinaryAttachmentCreateRequest, BinaryBody, BinaryPreviewKind, BinaryStorage, BinaryStorageReadResult, BinaryStorageStatResult, BinaryStorageWriteRequest, BinaryStorageWriteResult, BooleanWhenOverloads, BranchMoreArgs, BranchOutputGuard, BranchStepsArg, CallableToolConfig, CallableToolConfigOptions, CallableToolExecuteHandler, CallableToolFactory, CallableToolKindToken, ChainCursor, ChatModelConfig, ChatModelFactory, ChatModelStructuredOutputOptions, Clock, CodemationTelemetryAttributeNames, CodemationTelemetryMetricNames, ConnectionInvocationAppendArgs, ConnectionInvocationId, ConnectionInvocationIdFactory, ConnectionInvocationKind, ConnectionInvocationRecord, ConnectionNodeIdFactory, Container, CoreTokens, CostCatalog, CostCatalogEntry, CostTrackingComponent, CostTrackingPriceQuote, CostTrackingTelemetry, CostTrackingTelemetryAttributeNames, CostTrackingTelemetryFactory, CostTrackingTelemetryMetricNames, CostTrackingUsageRecord, CredentialAdvancedSectionPresentation, CredentialAuthDefinition, CredentialBinding, CredentialBindingKey, CredentialFieldSchema, CredentialHealth, CredentialHealthStatus, CredentialHealthTester, CredentialInstanceId, CredentialInstanceRecord, CredentialJsonRecord, CredentialMaterialSourceKind, CredentialOAuth2AuthDefinition, CredentialOAuth2ScopesFromPublicConfig, CredentialRequirement, CredentialResolverFactory, CredentialSessionFactory, CredentialSessionFactoryArgs, CredentialSessionService, CredentialSetupStatus, CredentialType, CredentialTypeDefinition, CredentialTypeId, CredentialTypeRegistry, CredentialUnboundError, CurrentStateExecutionRequest, DefaultAsyncSleeper, DefaultExecutionBinaryService, DefaultExecutionContextFactory, DefaultWorkflowGraphFactory, DefineBatchNodeOptions, DefineCredentialOptions, DefineNodeExecuteArgs, DefineNodeOptions, DefinedNode, DefinedNodeConfigInput, DefinedNodeCredentialAccessors, DefinedNodeCredentialBinding, DefinedNodeCredentialBindings, DefinedNodeRegistry, DefinedNodeRunContext, DependencyContainer, Disposable, Edge, EngineDeps, EngineExecutionLimitsPolicy, EngineExecutionLimitsPolicyConfig, EngineHost, EngineRunCounters, EventPublishingWorkflowExecutionRepository, ExecutableTriggerNode, ExecutionBinaryService, ExecutionContext, ExecutionContextFactory, ExecutionFrontierPlan, ExecutionInstanceDto, ExecutionInstanceId, ExecutionMode, ExecutionPayloadPolicyFields, ExecutionTelemetry, ExecutionTelemetryFactory, ExpRetryPolicy, ExponentialRetryPolicySpec, Expr, FixedRetryPolicySpec, GenAiTelemetryAttributeNames, HttpMethod, InMemoryBinaryStorage, InMemoryLiveWorkflowRepository, InMemoryRunDataFactory, InMemoryRunEventBus, InProcessRetryRunner, InjectableRuntimeDecoratorComposer, InjectionToken, InputPortKey, Item, ItemBinary, ItemExpr, ItemExprArgs, ItemExprCallback, ItemExprContext, ItemExprResolvedContext, ItemExprResolver, ItemNode, Items, ItemsInputNormalizer, JsonArray, JsonNonArray, JsonObject, JsonPrimitive, JsonValue, LangChainChatModelLike, LangChainStructuredOutputModelLike, Lifecycle, LiveWorkflowRepository, MultiInputNode, MutableRunData, NoOpCostTrackingTelemetry, NoOpCostTrackingTelemetryFactory, NoOpExecutionTelemetry, NoOpExecutionTelemetryFactory, NoOpNodeExecutionTelemetry, NoOpTelemetryArtifactReference, NoOpTelemetrySpanScope, NoRetryPolicy, NodeActivationContinuation, NodeActivationId, NodeActivationReceipt, NodeActivationRequest, NodeActivationRequestBase, NodeActivationScheduler, NodeBackedToolConfig, NodeBackedToolConfigOptions, NodeBackedToolInputMapper, NodeBackedToolInputMapperArgs, NodeBackedToolOutputMapper, NodeBackedToolOutputMapperArgs, NodeBinaryAttachmentService, NodeConfigBase, NodeConnectionName, NodeDefinition, NodeErrorHandler, NodeErrorHandlerArgs, NodeErrorHandlerSpec, NodeEventPublisher, NodeExecutionContext, NodeExecutionError, NodeExecutionRequest, NodeExecutionRequestHandler, NodeExecutionScheduler, NodeExecutionSnapshot, NodeExecutionStatePublisher, NodeExecutionStatus, NodeExecutionTelemetry, NodeExecutor, NodeId, NodeIdRef, NodeInputsByPort, NodeKind, NodeOffloadPolicy, NodeOutputNormalizer, NodeOutputs, NodeRef, NodeResolver, NodeSchedulerDecision, NoneRetryPolicySpec, OAuth2ProviderFromPublicConfig, OutputPortKey, PairedItemRef, Param, ParamDeep, ParentExecutionRef, PayloadStorageKind, PendingNodeExecution, PersistedExecutionInstanceKind, PersistedExecutionInstanceRecord, PersistedMutableNodeState, PersistedMutableRunState, PersistedRunControlState, PersistedRunPolicySnapshot, PersistedRunSchedulingState, PersistedRunSlotProjectionRecord, PersistedRunState, PersistedRunWorkItemKind, PersistedRunWorkItemRecord, PersistedRuntimeTypeDecoratorOptions, PersistedRuntimeTypeKind, PersistedRuntimeTypeMetadata, PersistedRuntimeTypeMetadataStore, PersistedRuntimeTypeNameResolver, PersistedTokenId, PersistedTriggerSetupState, PersistedWorkflowSnapshot, PersistedWorkflowSnapshotNode, PersistedWorkflowTokenRegistryLike, PinnedNodeOutputsByPort, PortsEmission, PreparedNodeActivationDispatch, RegistrationOptions, RetryPolicy, RetryPolicySpec, RunCompletionNotifier, RunCurrentState, RunDataFactory, RunDataSnapshot, RunEvent, RunEventBus, RunEventPublisherDeps, RunEventSubscription, RunExecutionOptions, RunFinishedAtFactory, RunId, RunIdFactory, RunIntentService, RunPruneCandidate, RunQueueEntry, RunResult, RunRevision, RunSlotProjectionState, RunStateResetRequest, RunStatus, RunStopCondition, RunSummary, RunnableNode, RunnableNodeConfig, RunnableNodeExecuteArgs, RunnableNodeInputJson, RunnableNodeOutputJson, RunnableOutputBehaviorResolver, SlotExecutionStateDto, StackTraceCallSitePathResolver, StepSequenceOutput, SystemClock, TelemetryArtifactAttachment, TelemetryArtifactReference, TelemetryAttributePrimitive, TelemetryAttributes, TelemetryChildSpanStart, TelemetryMetricRecord, TelemetryScope, TelemetrySpanEnd, TelemetrySpanEventRecord, TelemetrySpanScope, TestableTriggerNode, Tool, ToolConfig, ToolExecuteArgs, TriggerCleanupHandle, TriggerInstanceId, TriggerNode, TriggerNodeConfig, TriggerNodeOutputJson, TriggerNodeSetupState, TriggerRuntimeDiagnostics, TriggerSetupContext, TriggerSetupStateFor, TriggerSetupStateRepository, TriggerTestItemsContext, TypeToken, UnavailableBinaryStorage, UpstreamRefPlaceholder, ValidStepSequence, WebhookControlSignal, WebhookInvocationMatch, WebhookRunResult, WebhookTriggerMatcher, WebhookTriggerResolution, WebhookTriggerRoutingDiagnostics, WhenBuilder, WorkItemId, WorkItemStatus, WorkflowActivationPolicy, WorkflowBuilder, WorkflowDefinition, WorkflowDetailSelectionState, WorkflowErrorContext, WorkflowErrorHandler, WorkflowErrorHandlerSpec, WorkflowExecutableNodeClassifier, WorkflowExecutableNodeClassifierFactory, WorkflowExecutionListingRepository, WorkflowExecutionPruneRepository, WorkflowExecutionRepository, WorkflowGraph, WorkflowGraphFactory, WorkflowId, WorkflowNodeConnection, WorkflowNodeInstanceFactory, WorkflowPolicyRuntimeDefaults, WorkflowPrunePolicySpec, WorkflowRepository, WorkflowRunDetailDto, WorkflowRunnerResolver, WorkflowRunnerService, WorkflowSnapshotFactory, WorkflowSnapshotResolver, WorkflowStoragePolicyDecisionArgs, WorkflowStoragePolicyMode, WorkflowStoragePolicyResolver, WorkflowStoragePolicySpec, ZodSchemaAny, branchRef, callableTool, chatModel, container, defineBatchNode, defineCredential, defineNode, delay, emitPorts, getOriginIndexFromItem, getPersistedRuntimeTypeMetadata, inject, injectAll, injectable, instanceCachingFactory, instancePerContainerCachingFactory, isItemExpr, isPortsEmission, isUnbrandedPortsEmissionShape, itemExpr, node, nodeRef, predicateAwareClassFactory, registry, resolveItemExprsForExecution, resolveItemExprsInUnknown, runnableNodeInputType, runnableNodeOutputType, singleton, tool, triggerNodeOutputType, triggerNodeSetupStateType };
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { $ as
|
|
2
|
-
import {
|
|
3
|
-
import { z } from "zod";
|
|
1
|
+
import { $ as CostTrackingTelemetryMetricNames, At as inject, B as nodeRef, Ct as tool, Dt as PersistedRuntimeTypeNameResolver, Et as StackTraceCallSitePathResolver, F as InProcessRetryRunner, Ft as predicateAwareClassFactory, G as NoOpExecutionTelemetryFactory, H as CodemationTelemetryMetricNames, It as registry, J as NoOpTelemetrySpanScope, K as NoOpExecutionTelemetry, L as DefaultExecutionContextFactory, Lt as singleton, M as RunnableOutputBehaviorResolver, Mt as injectable, N as NodeOutputNormalizer, Nt as instanceCachingFactory, Ot as container, P as ItemExprResolver, Pt as instancePerContainerCachingFactory, Q as CostTrackingTelemetryAttributeNames, R as AllWorkflowsActiveWorkflowActivationPolicy, Rt as CoreTokens, St as node, Tt as PersistedRuntimeTypeMetadataStore, U as GenAiTelemetryAttributeNames, V as RunFinishedAtFactory, W as CodemationTelemetryAttributeNames, X as NoOpCostTrackingTelemetryFactory, Y as NoOpTelemetryArtifactReference, Z as NoOpCostTrackingTelemetry, _t as itemExpr, a as InMemoryLiveWorkflowRepository, at as isPortsEmission, bt as chatModel, ct as CredentialResolverFactory, d as InMemoryBinaryStorage, dt as UnavailableBinaryStorage, et as CredentialUnboundError, ft as NodeEventPublisher, g as EngineExecutionLimitsPolicy, gt as isItemExpr, ht as ConnectionNodeIdFactory, i as RunIntentService, it as emitPorts, jt as injectAll, kt as delay, lt as getOriginIndexFromItem, mt as WorkflowExecutableNodeClassifier, nt as RetryPolicy, ot as isUnbrandedPortsEmissionShape, pt as WorkflowExecutableNodeClassifierFactory, q as NoOpNodeExecutionTelemetry, rt as NoRetryPolicy, st as DefaultAsyncSleeper, tt as ExpRetryPolicy, u as InMemoryRunDataFactory, ut as DefaultExecutionBinaryService, vt as resolveItemExprsForExecution, wt as InjectableRuntimeDecoratorComposer, xt as getPersistedRuntimeTypeMetadata, yt as resolveItemExprsInUnknown, z as branchRef } from "./runtime-DUW6tIJ1.js";
|
|
2
|
+
import { i as WhenBuilder, n as WorkflowBuilder, r as ChainCursor, t as InMemoryRunEventBus } from "./InMemoryRunEventBusRegistry-C2U83Hmv.js";
|
|
3
|
+
import { ZodError, z } from "zod";
|
|
4
4
|
import { randomUUID } from "node:crypto";
|
|
5
5
|
|
|
6
6
|
//#region src/contracts/Clock.ts
|
|
@@ -282,13 +282,34 @@ var CallableToolConfig = class {
|
|
|
282
282
|
* Parses tool input and output with the configured Zod schemas.
|
|
283
283
|
*/
|
|
284
284
|
async executeTool(args) {
|
|
285
|
-
const parsedInput = this.
|
|
285
|
+
const parsedInput = this.parseInput(args.input);
|
|
286
286
|
const raw = await Promise.resolve(this.executeHandler({
|
|
287
287
|
...args,
|
|
288
288
|
config: this,
|
|
289
289
|
input: parsedInput
|
|
290
290
|
}));
|
|
291
|
-
return this.
|
|
291
|
+
return this.parseOutput(raw);
|
|
292
|
+
}
|
|
293
|
+
parseInput(input$1) {
|
|
294
|
+
try {
|
|
295
|
+
return this.inputSchemaValue.parse(input$1);
|
|
296
|
+
} catch (error) {
|
|
297
|
+
throw this.decorateValidationError(error, "input");
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
parseOutput(output$1) {
|
|
301
|
+
try {
|
|
302
|
+
return this.outputSchemaValue.parse(output$1);
|
|
303
|
+
} catch (error) {
|
|
304
|
+
throw this.decorateValidationError(error, "output");
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
decorateValidationError(error, stage) {
|
|
308
|
+
if (error instanceof ZodError) {
|
|
309
|
+
error.codemationToolValidationStage = stage;
|
|
310
|
+
return error;
|
|
311
|
+
}
|
|
312
|
+
return error instanceof Error ? error : new Error(String(error));
|
|
292
313
|
}
|
|
293
314
|
};
|
|
294
315
|
|
|
@@ -649,73 +670,5 @@ let ItemsInputNormalizer = class ItemsInputNormalizer$1 {
|
|
|
649
670
|
ItemsInputNormalizer = __decorate([injectable()], ItemsInputNormalizer);
|
|
650
671
|
|
|
651
672
|
//#endregion
|
|
652
|
-
|
|
653
|
-
var NoRetryPolicy = class {
|
|
654
|
-
kind = "none";
|
|
655
|
-
};
|
|
656
|
-
|
|
657
|
-
//#endregion
|
|
658
|
-
//#region src/contracts/RetryPolicy.ts
|
|
659
|
-
var RetryPolicy = class {
|
|
660
|
-
kind = "fixed";
|
|
661
|
-
constructor(maxAttempts, delayMs) {
|
|
662
|
-
this.maxAttempts = maxAttempts;
|
|
663
|
-
this.delayMs = delayMs;
|
|
664
|
-
if (!Number.isFinite(maxAttempts) || maxAttempts < 1 || !Number.isInteger(maxAttempts)) throw new Error(`RetryPolicy.maxAttempts must be a positive integer, got ${maxAttempts}`);
|
|
665
|
-
if (!Number.isFinite(delayMs) || delayMs < 0) throw new Error(`RetryPolicy.delayMs must be a non-negative finite number, got ${delayMs}`);
|
|
666
|
-
}
|
|
667
|
-
/** Default for HTTP-style transient failures: 3 tries, 1s between attempts. */
|
|
668
|
-
static defaultForHttp = {
|
|
669
|
-
kind: "fixed",
|
|
670
|
-
maxAttempts: 3,
|
|
671
|
-
delayMs: 1e3
|
|
672
|
-
};
|
|
673
|
-
/** Default for LLM / agent calls: 3 tries, 2s fixed backoff. */
|
|
674
|
-
static defaultForAiAgent = {
|
|
675
|
-
kind: "fixed",
|
|
676
|
-
maxAttempts: 3,
|
|
677
|
-
delayMs: 2e3
|
|
678
|
-
};
|
|
679
|
-
};
|
|
680
|
-
|
|
681
|
-
//#endregion
|
|
682
|
-
//#region src/contracts/ExpRetryPolicy.ts
|
|
683
|
-
var ExpRetryPolicy = class {
|
|
684
|
-
kind = "exponential";
|
|
685
|
-
constructor(maxAttempts, initialDelayMs, multiplier, maxDelayMs, jitter) {
|
|
686
|
-
this.maxAttempts = maxAttempts;
|
|
687
|
-
this.initialDelayMs = initialDelayMs;
|
|
688
|
-
this.multiplier = multiplier;
|
|
689
|
-
this.maxDelayMs = maxDelayMs;
|
|
690
|
-
this.jitter = jitter;
|
|
691
|
-
if (!Number.isFinite(maxAttempts) || maxAttempts < 1 || !Number.isInteger(maxAttempts)) throw new Error(`ExpRetryPolicy.maxAttempts must be a positive integer, got ${maxAttempts}`);
|
|
692
|
-
if (!Number.isFinite(initialDelayMs) || initialDelayMs < 0) throw new Error(`ExpRetryPolicy.initialDelayMs must be a non-negative finite number, got ${initialDelayMs}`);
|
|
693
|
-
if (!Number.isFinite(multiplier) || multiplier < 1) throw new Error(`ExpRetryPolicy.multiplier must be >= 1, got ${multiplier}`);
|
|
694
|
-
}
|
|
695
|
-
};
|
|
696
|
-
|
|
697
|
-
//#endregion
|
|
698
|
-
//#region src/contracts/credentialTypes.ts
|
|
699
|
-
var CredentialUnboundError = class CredentialUnboundError extends Error {
|
|
700
|
-
constructor(bindingKey, acceptedTypes = []) {
|
|
701
|
-
super(CredentialUnboundError.createMessage(bindingKey, acceptedTypes));
|
|
702
|
-
this.bindingKey = bindingKey;
|
|
703
|
-
this.acceptedTypes = acceptedTypes;
|
|
704
|
-
this.name = "CredentialUnboundError";
|
|
705
|
-
}
|
|
706
|
-
static createMessage(bindingKey, acceptedTypes) {
|
|
707
|
-
const acceptedTypesSuffix = acceptedTypes.length > 0 ? ` Accepted credential types: ${acceptedTypes.join(", ")}.` : "";
|
|
708
|
-
return `Credential slot "${bindingKey.slotKey}" is not bound for workflow ${bindingKey.workflowId} node ${bindingKey.nodeId}.${acceptedTypesSuffix}`;
|
|
709
|
-
}
|
|
710
|
-
};
|
|
711
|
-
|
|
712
|
-
//#endregion
|
|
713
|
-
//#region src/contracts/workflowTypes.ts
|
|
714
|
-
function nodeRef(nodeId) {
|
|
715
|
-
return nodeId;
|
|
716
|
-
}
|
|
717
|
-
const branchRef = (index) => `$${index}`;
|
|
718
|
-
|
|
719
|
-
//#endregion
|
|
720
|
-
export { AgentConfigInspector, AgentConnectionNodeCollector, AgentGuardrailDefaults, AgentMessageConfigNormalizer, AgentToolFactory, AllWorkflowsActiveWorkflowActivationPolicy, CallableToolConfig, CallableToolFactory, CallableToolKindToken, ChainCursor, ConnectionInvocationIdFactory, ConnectionNodeIdFactory, CoreTokens, CredentialResolverFactory, CredentialUnboundError, DefaultAsyncSleeper, DefaultExecutionBinaryService, DefaultExecutionContextFactory, DefaultWorkflowGraphFactory, DefinedNodeRegistry, EngineExecutionLimitsPolicy, EventPublishingWorkflowExecutionRepository, ExpRetryPolicy, InMemoryBinaryStorage, InMemoryLiveWorkflowRepository, InMemoryRunDataFactory, InMemoryRunEventBus, InProcessRetryRunner, InjectableRuntimeDecoratorComposer, ItemExprResolver, ItemsInputNormalizer, NoRetryPolicy, NodeBackedToolConfig, NodeEventPublisher, NodeOutputNormalizer, PersistedRuntimeTypeMetadataStore, PersistedRuntimeTypeNameResolver, RetryPolicy, RunFinishedAtFactory, RunIntentService, RunnableOutputBehaviorResolver, StackTraceCallSitePathResolver, SystemClock, UnavailableBinaryStorage, WhenBuilder, WorkflowBuilder, WorkflowExecutableNodeClassifier, WorkflowExecutableNodeClassifierFactory, branchRef, callableTool, chatModel, container, defineBatchNode, defineCredential, defineNode, delay, emitPorts, getOriginIndexFromItem, getPersistedRuntimeTypeMetadata, inject, injectAll, injectable, instanceCachingFactory, instancePerContainerCachingFactory, isItemExpr, isPortsEmission, isUnbrandedPortsEmissionShape, itemExpr, node, nodeRef, predicateAwareClassFactory, registry, resolveItemExprsForExecution, resolveItemExprsInUnknown, singleton, tool };
|
|
673
|
+
export { AgentConfigInspector, AgentConnectionNodeCollector, AgentGuardrailDefaults, AgentMessageConfigNormalizer, AgentToolFactory, AllWorkflowsActiveWorkflowActivationPolicy, CallableToolConfig, CallableToolFactory, CallableToolKindToken, ChainCursor, CodemationTelemetryAttributeNames, CodemationTelemetryMetricNames, ConnectionInvocationIdFactory, ConnectionNodeIdFactory, CoreTokens, CostTrackingTelemetryAttributeNames, CostTrackingTelemetryMetricNames, CredentialResolverFactory, CredentialUnboundError, DefaultAsyncSleeper, DefaultExecutionBinaryService, DefaultExecutionContextFactory, DefaultWorkflowGraphFactory, DefinedNodeRegistry, EngineExecutionLimitsPolicy, EventPublishingWorkflowExecutionRepository, ExpRetryPolicy, GenAiTelemetryAttributeNames, InMemoryBinaryStorage, InMemoryLiveWorkflowRepository, InMemoryRunDataFactory, InMemoryRunEventBus, InProcessRetryRunner, InjectableRuntimeDecoratorComposer, ItemExprResolver, ItemsInputNormalizer, NoOpCostTrackingTelemetry, NoOpCostTrackingTelemetryFactory, NoOpExecutionTelemetry, NoOpExecutionTelemetryFactory, NoOpNodeExecutionTelemetry, NoOpTelemetryArtifactReference, NoOpTelemetrySpanScope, NoRetryPolicy, NodeBackedToolConfig, NodeEventPublisher, NodeOutputNormalizer, PersistedRuntimeTypeMetadataStore, PersistedRuntimeTypeNameResolver, RetryPolicy, RunFinishedAtFactory, RunIntentService, RunnableOutputBehaviorResolver, StackTraceCallSitePathResolver, SystemClock, UnavailableBinaryStorage, WhenBuilder, WorkflowBuilder, WorkflowExecutableNodeClassifier, WorkflowExecutableNodeClassifierFactory, branchRef, callableTool, chatModel, container, defineBatchNode, defineCredential, defineNode, delay, emitPorts, getOriginIndexFromItem, getPersistedRuntimeTypeMetadata, inject, injectAll, injectable, instanceCachingFactory, instancePerContainerCachingFactory, isItemExpr, isPortsEmission, isUnbrandedPortsEmissionShape, itemExpr, node, nodeRef, predicateAwareClassFactory, registry, resolveItemExprsForExecution, resolveItemExprsInUnknown, singleton, tool };
|
|
721
674
|
//# sourceMappingURL=index.js.map
|