@codemation/core 0.8.1 → 0.10.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 +380 -0
- package/dist/{EngineRuntimeRegistration.types-BP6tsaNP.d.ts → EngineRuntimeRegistration.types-D1fyApMI.d.ts} +2 -2
- package/dist/{EngineWorkflowRunnerService-DzOCa1BW.d.cts → EngineRuntimeRegistration.types-pB3FnzqR.d.cts} +17 -17
- package/dist/{InMemoryRunDataFactory-1iz7_SnO.d.cts → InMemoryRunDataFactory-Xw7v4-sj.d.cts} +31 -29
- package/dist/InMemoryRunEventBusRegistry-VM3OWnHo.cjs +47 -0
- package/dist/InMemoryRunEventBusRegistry-VM3OWnHo.cjs.map +1 -0
- package/dist/InMemoryRunEventBusRegistry-sM4z4n_i.js +41 -0
- package/dist/InMemoryRunEventBusRegistry-sM4z4n_i.js.map +1 -0
- package/dist/{RunIntentService-BqhmdoA1.d.ts → RunIntentService-BE9CAkbf.d.ts} +966 -471
- package/dist/{RunIntentService-S-1lW-gS.d.cts → RunIntentService-siBSjaaY.d.cts} +859 -493
- package/dist/bootstrap/index.cjs +5 -2
- package/dist/bootstrap/index.d.cts +212 -135
- package/dist/bootstrap/index.d.ts +4 -4
- package/dist/bootstrap/index.js +3 -3
- package/dist/{bootstrap-Bx1u4cbS.cjs → bootstrap-Cm5ruQxx.cjs} +253 -2
- package/dist/bootstrap-Cm5ruQxx.cjs.map +1 -0
- package/dist/{bootstrap-BoknFKnw.js → bootstrap-D3r505ko.js} +236 -3
- package/dist/bootstrap-D3r505ko.js.map +1 -0
- package/dist/{index-CVs9rVhl.d.ts → index-DeLl1Tne.d.ts} +632 -230
- package/dist/index.cjs +323 -176
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +544 -91
- package/dist/index.d.ts +3 -3
- package/dist/index.js +299 -166
- package/dist/index.js.map +1 -1
- package/dist/{runtime-DUW6tIJ1.js → runtime-BGNbRnqs.js} +934 -75
- package/dist/runtime-BGNbRnqs.js.map +1 -0
- package/dist/{runtime-Dvo2ru5A.cjs → runtime-DKXJwTNv.cjs} +1028 -73
- package/dist/runtime-DKXJwTNv.cjs.map +1 -0
- package/dist/testing.cjs +4 -4
- 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 +7 -2
- package/src/ai/AiHost.ts +42 -14
- package/src/authoring/DefinedCollectionRegistry.ts +17 -0
- package/src/authoring/defineCollection.types.ts +181 -0
- package/src/authoring/definePollingTrigger.types.ts +396 -0
- package/src/authoring/definePollingTriggerInternals.ts +74 -0
- package/src/authoring/index.ts +19 -0
- package/src/bootstrap/index.ts +9 -0
- package/src/bootstrap/runtime/EngineRuntimeRegistrar.ts +8 -0
- package/src/browser.ts +1 -0
- package/src/contracts/CodemationTelemetryAttributeNames.ts +6 -0
- package/src/contracts/NoOpNodeExecutionTelemetry.ts +2 -11
- package/src/contracts/NoOpTelemetrySpanScope.ts +46 -10
- package/src/contracts/assertionTypes.ts +63 -0
- package/src/contracts/baseTypes.ts +12 -0
- package/src/contracts/collectionTypes.ts +44 -0
- package/src/contracts/credentialTypes.ts +23 -1
- package/src/contracts/executionPersistenceContracts.ts +30 -0
- package/src/contracts/index.ts +4 -0
- package/src/contracts/runTypes.ts +37 -1
- package/src/contracts/runtimeTypes.ts +42 -0
- package/src/contracts/telemetryTypes.ts +8 -0
- package/src/contracts/testTriggerTypes.ts +66 -0
- package/src/contracts/workflowTypes.ts +36 -7
- package/src/contracts.ts +59 -0
- package/src/events/ConnectionInvocationEventPublisher.ts +46 -0
- package/src/events/index.ts +1 -0
- package/src/events/runEvents.ts +74 -0
- package/src/execution/ChildExecutionScopeFactory.ts +55 -0
- package/src/execution/DefaultExecutionContextFactory.ts +6 -0
- package/src/execution/ExecutionTelemetryCostTrackingDecoratorFactory.ts +18 -0
- package/src/execution/NodeExecutor.ts +10 -2
- package/src/execution/NodeInstanceFactory.ts +13 -1
- package/src/execution/NodeInstantiationError.ts +16 -0
- package/src/execution/NodeRunStateWriter.ts +7 -0
- package/src/execution/NodeRunStateWriterFactory.ts +7 -0
- package/src/execution/WorkflowRunExecutionContextFactory.ts +3 -0
- package/src/execution/index.ts +2 -0
- package/src/index.ts +8 -0
- package/src/orchestration/AbortControllerFactory.ts +9 -0
- package/src/orchestration/NodeExecutionRequestHandlerService.ts +1 -0
- package/src/orchestration/RunContinuationService.ts +3 -0
- package/src/orchestration/RunStartService.ts +122 -3
- package/src/orchestration/TestSuiteOrchestrator.ts +350 -0
- package/src/orchestration/TestSuiteRunIdFactory.ts +11 -0
- package/src/orchestration/TriggerRuntimeService.ts +34 -7
- package/src/orchestration/index.ts +9 -0
- package/src/runtime/EngineFactory.ts +12 -0
- package/src/triggers/polling/PollingTriggerDedupWindow.ts +23 -0
- package/src/triggers/polling/PollingTriggerLogger.ts +18 -0
- package/src/triggers/polling/PollingTriggerRuntime.ts +122 -0
- package/src/triggers/polling/index.ts +5 -0
- package/src/types/index.ts +12 -9
- package/src/workflow/definition/NodeIterationIdFactory.ts +26 -0
- package/src/workflow/dsl/NodeIdSlugifier.ts +18 -0
- package/src/workflow/dsl/WorkflowBuilder.ts +71 -3
- package/src/workflow/dsl/WorkflowDefinitionError.ts +15 -0
- package/src/workflow/index.ts +3 -0
- package/dist/InMemoryRunEventBusRegistry-B0_C4OnP.cjs +0 -262
- package/dist/InMemoryRunEventBusRegistry-B0_C4OnP.cjs.map +0 -1
- package/dist/InMemoryRunEventBusRegistry-C2U83Hmv.js +0 -238
- package/dist/InMemoryRunEventBusRegistry-C2U83Hmv.js.map +0 -1
- package/dist/bootstrap-BoknFKnw.js.map +0 -1
- package/dist/bootstrap-Bx1u4cbS.cjs.map +0 -1
- package/dist/runtime-DUW6tIJ1.js.map +0 -1
- package/dist/runtime-Dvo2ru5A.cjs.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,
|
|
1
|
+
import { $ as RunRevision, $a as InputPortKey, $i as PersistedMutableNodeState, $n as NodeActivationRequestBase, $r as NoOpExecutionTelemetryFactory, $t as PersistedRunPolicySnapshot, A as RunFinishedAtFactory, Aa as TypeToken, Ai as CredentialSessionFactoryArgs, An as ExponentialRetryPolicySpec, Ar as WebhookControlSignal, At as ItemBinary, B as isUnbrandedPortsEmissionShape, Ba as singleton, Bi as PollingTriggerLogger, Bn as BinaryStorageWriteResult, Br as TelemetryArtifactAttachment, Bt as NodeDefinition, C as AnyTriggerNodeConfig, Ca as WorkflowExecutionRepository, Ci as CredentialInstanceRecord, Cn as WorkflowStoragePolicySpec, Cr as WorkflowRepository, Ct as deriveAssertionPassed, D as BranchStepsArg, Da as InjectionToken, Di as CredentialOAuth2ScopesFromPublicConfig, Dn as runnableNodeOutputType, Dr as WorkflowSnapshotResolver, Dt as Edge, E as BranchOutputGuard, Ea as Disposable, Ei as CredentialOAuth2AuthDefinition, En as runnableNodeInputType, Er as WorkflowSnapshotFactory, Et as BinaryPreviewKind, F as NoRetryPolicy, Fa as injectable, Fi as CredentialTypeId, Fn as BinaryBody, Fr as AllWorkflowsActiveWorkflowActivationPolicy, Ft as JsonPrimitive, G as ExecutionPayloadPolicyFields, Ga as RunEvent, Gi as CurrentStateExecutionRequest, Gn as ExecutionContext, Gr as TelemetryMetricRecord, Gt as NodeIterationId, H as ConnectionInvocationKind, Hi as ConnectionInvocationAppendArgs, Hn as EngineHost, Hr as TelemetryAttributePrimitive, Ht as NodeErrorHandlerArgs, I as getOriginIndexFromItem, Ia as instanceCachingFactory, Ii as CredentialTypeRegistry, In as BinaryStorage, Ir as WorkflowActivationPolicy, It as JsonValue, J as PersistedExecutionInstanceRecord, Ja as TestCaseRunStatus, Ji as NodeExecutionError, Jn as LiveWorkflowRepository, Jr as TelemetrySpanEventRecord, Jt as NodeOutputs, K as PayloadStorageKind, Ka as RunEventBus, Ki as EngineRunCounters, Kn as ExecutionContextFactory, Kr as TelemetryScope, Kt as NodeKind, L as PortsEmission, La as instancePerContainerCachingFactory, Li as CredentialUnboundError, Ln as BinaryStorageReadResult, Lr as ExecutionTelemetry, Lt as MutableRunData, M as NoOpCostTrackingTelemetry, Ma as delay, Mi as CredentialSetupStatus, Mn as NoneRetryPolicySpec, Mr as WebhookTriggerMatcher, Mt as JsonArray, N as ExpRetryPolicy, Na as inject, Ni as CredentialType, Nn as RetryPolicySpec, Nr as WebhookTriggerResolution, Nt as JsonNonArray, O as StepSequenceOutput, Oa as Lifecycle, Oi as CredentialRequirement, On as triggerNodeOutputType, Or as HttpMethod, Ot as ExecutionMode, P as RetryPolicy, Pa as injectAll, Pi as CredentialTypeDefinition, Pn as BinaryAttachmentCreateRequest, Pr as WebhookTriggerRoutingDiagnostics, Pt as JsonObject, Q as RunIterationDto, Qa as TestTriggerSetupContext, Qi as PendingNodeExecution, Qn as NodeActivationRequest, Qr as CodemationTelemetryAttributeNames, Qt as ParentExecutionRef, R as emitPorts, Ra as predicateAwareClassFactory, Ri as OAuth2ProviderFromPublicConfig, Rn as BinaryStorageStatResult, Rr as ExecutionTelemetryFactory, Rt as NodeActivationId, S as AnyRunnableNodeConfig, Sa as WorkflowExecutionPruneRepository, Si as CredentialInstanceId, Sn as WorkflowStoragePolicyResolver, Sr as WorkflowNodeInstanceFactory, St as DEFAULT_ASSERTION_PASS_THRESHOLD, T as BranchMoreArgs, Ta as DependencyContainer, Ti as CredentialMaterialSourceKind, Tn as nodeRef, Tr as WorkflowRunnerService, Tt as BinaryAttachment, U as ExecutionInstanceDto, Ua as EngineExecutionLimitsPolicy, Ui as ConnectionInvocationId, Un as ExecutableTriggerNode, Ur as TelemetryAttributes, Ut as NodeErrorHandlerSpec, V as BatchId, Va as CoreTokens, Vi as PollingTriggerDedupWindow, Vn as EngineDeps, Vr as TelemetryArtifactReference, Vt as NodeErrorHandler, W as ExecutionInstanceId, Wa as EngineExecutionLimitsPolicyConfig, Wi as ConnectionInvocationRecord, Wn as ExecutionBinaryService, Wr as TelemetryChildSpanStart, Wt as NodeIdRef, X as PersistedRunWorkItemKind, Xa as TestSuiteRunId, Xi as NodeExecutionStatus, Xn as NodeActivationContinuation, Xr as CodemationTelemetryMetricNames, Xt as NodeSchedulerDecision, Y as PersistedRunSlotProjectionRecord, Ya as TestSuiteRunStatus, Yi as NodeExecutionSnapshot, Yn as MultiInputNode, Yr as TelemetrySpanScope, Yt as NodeRef, Z as PersistedRunWorkItemRecord, Za as TestTriggerNodeConfig, Zi as NodeInputsByPort, Zn as NodeActivationReceipt, Zr as GenAiTelemetryAttributeNames, Zt as PairedItemRef, _ as NodeIdSlugifier, _a as RunStopCondition, _i as CredentialBindingKey, _n as WorkflowNodeConnection, _r as TriggerRuntimeDiagnostics, _t as itemExpr, aa as PersistedWorkflowSnapshotNode, ai as CostTrackingPriceQuote, an as RunnableNodeInputJson, ar as NodeExecutionScheduler, at as WorkflowRunDetailDto, b as ChainCursor, ba as WebhookRunResult, bi as CredentialHealthStatus, bn as WorkflowStoragePolicyDecisionArgs, br as TriggerSetupStateRepository, bt as AssertionResult, ca as RunCompletionNotifier, ci as CostTrackingTelemetryFactory, cn as TriggerNodeOutputJson, cr as NodeResolver, ct as Expr, d as DefaultWorkflowGraphFactory, da as RunExecutionOptions, di as CollectionStore, dn as WorkflowDefinition, dr as PreparedNodeActivationDispatch, dt as ItemExpr, ea as PersistedMutableRunState, ei as NoOpExecutionTelemetry, en as RunDataFactory, eo as NodeConnectionName, er as NodeActivationScheduler, et as RunSlotProjectionState, f as WorkflowExecutableNodeClassifierFactory, fa as RunPruneCandidate, fi as CollectionsContext, fn as WorkflowErrorContext, fr as RunnableNode, ft as ItemExprArgs, g as ConnectionInvocationIdFactory, ga as RunStatus, gi as CredentialBinding, gn as WorkflowGraphFactory, gr as TriggerNode, gt as isItemExpr, h as ConnectionNodeIdFactory, ha as RunStateResetRequest, hi as CredentialAuthDefinition, hn as WorkflowGraph, hr as TriggerCleanupHandle, ht as ItemExprResolvedContext, ia as PersistedWorkflowSnapshot, ii as CostTrackingComponent, in as RunnableNodeConfig, io as WorkflowId, ir as NodeExecutionRequestHandler, it as WorkflowDetailSelectionState, j as NoOpCostTrackingTelemetryFactory, ja as container, ji as CredentialSessionService, jn as FixedRetryPolicySpec, jr as WebhookInvocationMatch, jt as Items, k as ValidStepSequence, ka as RegistrationOptions, ki as CredentialSessionFactory, kn as triggerNodeSetupStateType, kr as TriggerInstanceId, kt as Item, la as RunCurrentState, li as CostTrackingTelemetryMetricNames, ln as TriggerNodeSetupState, lr as PersistedTriggerSetupState, lt as Param, m as NodeIterationIdFactory, ma as RunResult, mi as CredentialAdvancedSectionPresentation, mn as WorkflowErrorHandlerSpec, mr as TestableTriggerNode, mt as ItemExprContext, n as InMemoryLiveWorkflowRepository, na as PersistedRunSchedulingState, ni as NoOpTelemetrySpanScope, nn as RunId, no as OutputPortKey, nr as NodeExecutionContext, nt as WorkItemId, oa as PersistedWorkflowTokenRegistryLike, oi as CostTrackingTelemetry, on as RunnableNodeOutputJson, or as NodeExecutionStatePublisher, ot as CostCatalog, p as WorkflowExecutableNodeClassifier, pa as RunQueueEntry, pi as AnyCredentialType, pn as WorkflowErrorHandler, pr as RunnableNodeExecuteArgs, pt as ItemExprCallback, q as PersistedExecutionInstanceKind, qa as RunEventSubscription, qi as ExecutionFrontierPlan, qn as ItemNode, qr as TelemetrySpanEnd, qt as NodeOffloadPolicy, ra as PersistedRunState, ri as NoOpTelemetryArtifactReference, rn as RunIdFactory, ro as PersistedTokenId, rr as NodeExecutionRequest, rt as WorkItemStatus, sa as PinnedNodeOutputsByPort, si as CostTrackingTelemetryAttributeNames, sn as TriggerNodeConfig, sr as NodeExecutor, st as CostCatalogEntry, t as RunIntentService, ta as PersistedRunControlState, ti as NoOpNodeExecutionTelemetry, tn as RunDataSnapshot, to as NodeId, tr as NodeBinaryAttachmentService, tt as SlotExecutionStateDto, ua as RunEventPublisherDeps, ui as CostTrackingUsageRecord, un as UpstreamRefPlaceholder, ur as PollingTriggerHandle, ut as ParamDeep, v as WorkflowDefinitionError, va as RunSummary, vi as CredentialFieldSchema, vn as WorkflowPolicyRuntimeDefaults, vr as TriggerSetupContext, vt as resolveItemExprsForExecution, w as BooleanWhenOverloads, wa as Container, wi as CredentialJsonRecord, wn as branchRef, wr as WorkflowRunnerResolver, wt as ActivationIdFactory, x as WhenBuilder, xa as WorkflowExecutionListingRepository, xi as CredentialHealthTester, xn as WorkflowStoragePolicyMode, xr as TriggerTestItemsContext, xt as AssertionResultProvenance, y as WorkflowBuilder, ya as RunTestContext, yi as CredentialHealth, yn as WorkflowPrunePolicySpec, yr as TriggerSetupStateFor, yt as resolveItemExprsInUnknown, z as isPortsEmission, za as registry, zi as NoOpPollingTriggerLogger, zn as BinaryStorageWriteRequest, zr as NodeExecutionTelemetry, zt as NodeConfigBase } from "./RunIntentService-BE9CAkbf.js";
|
|
2
|
+
import { $ as AgentConnectionNodeCollector, $t as ZodSchemaAny, At as AgentMessageTemplateContent, B as node, Bt as ChatLanguageModel, Cn as Clock, Ct as AgentGuardrailDefaults, D as RunnableOutputBehaviorResolver, Dt as AgentMessageLine, E as NodeOutputNormalizer, En as CredentialResolverFactory, Et as AgentMessageDto, F as DefaultExecutionBinaryService, Ft as AgentToolCallPlanner, G as InjectableRuntimeDecoratorComposer, Gt as NodeBackedToolInputMapper, H as StackTraceCallSitePathResolver, Ht as ChatModelConfig, I as UnavailableBinaryStorage, It as AgentToolDefinition, J as PersistedRuntimeTypeMetadata, Jt as NodeBackedToolOutputMapperArgs, K as PersistedRuntimeTypeDecoratorOptions, Kt as NodeBackedToolInputMapperArgs, L as ItemsInputNormalizer, Lt as AgentToolExecuteArgs, M as DefaultAsyncSleeper, Mt as AgentNodeConfig, Nt as AgentTool, O as ItemExprResolver, Ot as AgentMessageRole, P as ChildExecutionScopeFactory, Pt as AgentToolCall, Q as AgentConnectionCredentialSource, Qt as ToolExecuteArgs, R as chatModel, Rt as AgentToolToken, Sn as defineNode, St as AgentGuardrailConfig, Tn as NodeEventPublisher, Tt as AgentMessageConfig, U as PersistedRuntimeTypeNameResolver, Ut as ChatModelFactory, V as tool, Vt as ChatLanguageModelCallOptions, W as PersistedRuntimeTypeMetadataStore, Wt as NodeBackedToolConfigOptions, X as InMemoryRunEventBus, Xt as Tool, Y as EventPublishingWorkflowExecutionRepository, Yt as StructuredOutputOptions, Z as ConnectionInvocationEventPublisher, Zt as ToolConfig, _ as InMemoryBinaryStorage, _n as DefinedNodeCredentialAccessors, _t as c, an as CallableToolConfig, at as DefinePollingTriggerPollResult, bn as DefinedNodeRunContext, bt as AgentAttachmentRole, c as PollingRunCycleResult, cn as NodeBackedToolConfig, ct as DefinedPollingTriggerConfig, dn as DefinedNodeRegistry, dt as CollectionColumnBuilder, en as AgentConfigInspector, et as AgentConnectionNodeDescriptor, fn as DefineBatchNodeOptions, ft as CollectionDefinition, g as InMemoryRunDataFactory, gn as DefinedNodeConfigInput, gt as DefinedCollection, hn as DefinedNode, ht as DefineCollectionOptions, in as CallableToolFactory, it as DefinePollingTriggerPollContext, j as DefaultExecutionContextFactory, jt as AgentModelInvocationOptions, k as InProcessRetryRunner, kt as AgentMessageTemplate, l as PollingTriggerRuntime, ln as DefineCredentialOptions, lt as definePollingTrigger, mn as DefineNodeOptions, mt as CollectionIndexDefinition, nn as AgentToolFactory, nt as DefinePollingTriggerExecuteContext, on as CallableToolConfigOptions, ot as DefinePollingTriggerTestItemsContext, pn as DefineNodeExecuteArgs, pt as CollectionFieldDefinition, q as PersistedRuntimeTypeKind, qt as NodeBackedToolOutputMapper, rn as CallableToolKindToken, rt as DefinePollingTriggerOptions, s as PollingRunCycleArgs, sn as CallableToolExecuteHandler, st as DefinedPollingTrigger, tn as AgentMessageConfigNormalizer, tt as AgentConnectionNodeRole, u as PollingTriggerStartArgs, un as defineCredential, ut as DefinedCollectionRegistry, vn as DefinedNodeCredentialBinding, vt as defineCollection, wn as SystemClock, wt as AgentMessageBuildArgs, xn as defineBatchNode, xt as AgentCanvasPresentation, yn as DefinedNodeCredentialBindings, yt as callableTool, z as getPersistedRuntimeTypeMetadata, zt as AgentTurnLimitBehavior } from "./index-DeLl1Tne.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, AssertionResult, AssertionResultProvenance, BatchId, BinaryAttachment, BinaryAttachmentCreateRequest, BinaryBody, BinaryPreviewKind, BinaryStorage, BinaryStorageReadResult, BinaryStorageStatResult, BinaryStorageWriteRequest, BinaryStorageWriteResult, BooleanWhenOverloads, BranchMoreArgs, BranchOutputGuard, BranchStepsArg, CallableToolConfig, CallableToolConfigOptions, CallableToolExecuteHandler, CallableToolFactory, CallableToolKindToken, ChainCursor, ChatLanguageModel, ChatLanguageModelCallOptions, ChatModelConfig, ChatModelFactory, ChildExecutionScopeFactory, Clock, CodemationTelemetryAttributeNames, CodemationTelemetryMetricNames, CollectionColumnBuilder, CollectionDefinition, CollectionFieldDefinition, CollectionIndexDefinition, CollectionStore, CollectionsContext, ConnectionInvocationAppendArgs, ConnectionInvocationEventPublisher, 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, DEFAULT_ASSERTION_PASS_THRESHOLD, DefaultAsyncSleeper, DefaultExecutionBinaryService, DefaultExecutionContextFactory, DefaultWorkflowGraphFactory, DefineBatchNodeOptions, DefineCollectionOptions, DefineCredentialOptions, DefineNodeExecuteArgs, DefineNodeOptions, DefinePollingTriggerExecuteContext, DefinePollingTriggerOptions, DefinePollingTriggerPollContext, DefinePollingTriggerPollResult, DefinePollingTriggerTestItemsContext, DefinedCollection, DefinedCollectionRegistry, DefinedNode, DefinedNodeConfigInput, DefinedNodeCredentialAccessors, DefinedNodeCredentialBinding, DefinedNodeCredentialBindings, DefinedNodeRegistry, DefinedNodeRunContext, DefinedPollingTrigger, DefinedPollingTriggerConfig, 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, Lifecycle, LiveWorkflowRepository, MultiInputNode, MutableRunData, NoOpCostTrackingTelemetry, NoOpCostTrackingTelemetryFactory, NoOpExecutionTelemetry, NoOpExecutionTelemetryFactory, NoOpNodeExecutionTelemetry, NoOpPollingTriggerLogger, 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, NodeIdSlugifier, NodeInputsByPort, NodeIterationId, NodeIterationIdFactory, 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, PollingRunCycleArgs, PollingRunCycleResult, PollingTriggerDedupWindow, PollingTriggerHandle, PollingTriggerLogger, PollingTriggerRuntime, PollingTriggerStartArgs, PortsEmission, PreparedNodeActivationDispatch, RegistrationOptions, RetryPolicy, RetryPolicySpec, RunCompletionNotifier, RunCurrentState, RunDataFactory, RunDataSnapshot, RunEvent, RunEventBus, RunEventPublisherDeps, RunEventSubscription, RunExecutionOptions, RunFinishedAtFactory, RunId, RunIdFactory, RunIntentService, RunIterationDto, RunPruneCandidate, RunQueueEntry, RunResult, RunRevision, RunSlotProjectionState, RunStateResetRequest, RunStatus, RunStopCondition, RunSummary, RunTestContext, RunnableNode, RunnableNodeConfig, RunnableNodeExecuteArgs, RunnableNodeInputJson, RunnableNodeOutputJson, RunnableOutputBehaviorResolver, SlotExecutionStateDto, StackTraceCallSitePathResolver, StepSequenceOutput, StructuredOutputOptions, SystemClock, TelemetryArtifactAttachment, TelemetryArtifactReference, TelemetryAttributePrimitive, TelemetryAttributes, TelemetryChildSpanStart, TelemetryMetricRecord, TelemetryScope, TelemetrySpanEnd, TelemetrySpanEventRecord, TelemetrySpanScope, TestCaseRunStatus, TestSuiteRunId, TestSuiteRunStatus, TestTriggerNodeConfig, TestTriggerSetupContext, 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, WorkflowDefinitionError, 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, c, callableTool, chatModel, container, defineBatchNode, defineCollection, defineCredential, defineNode, definePollingTrigger, delay, deriveAssertionPassed, emitPorts, getOriginIndexFromItem, getPersistedRuntimeTypeMetadata, inject, injectAll, injectable, instanceCachingFactory, instancePerContainerCachingFactory, isItemExpr, isPortsEmission, isUnbrandedPortsEmissionShape, itemExpr, node, nodeRef, predicateAwareClassFactory, registry, resolveItemExprsForExecution, resolveItemExprsInUnknown, runnableNodeInputType, runnableNodeOutputType, singleton, tool, triggerNodeOutputType, triggerNodeSetupStateType };
|