MCPcopy Index your code
hub / github.com/simstudioai/sim / findEffectiveContainerId

Function findEffectiveContainerId

apps/sim/executor/utils/subflow-utils.ts:128–140  ·  view source on GitHub ↗
(
  originalId: string,
  currentNodeId: string,
  executionMap: Map<string, unknown>,
  mappedBranchIndex?: number
)

Source from the content-addressed store, hash-verified

126 * Returns the effective ID (cloned or original) that exists in the map.
127 */
128export function findEffectiveContainerId(
129 originalId: string,
130 currentNodeId: string,
131 executionMap: Map<string, unknown>,
132 mappedBranchIndex?: number
133): string {
134 return SubflowNodeIdCodec.findEffectiveContainerId(
135 originalId,
136 currentNodeId,
137 executionMap,
138 mappedBranchIndex
139 )
140}
141
142export function normalizeNodeId(nodeId: string): string {
143 return SubflowNodeIdCodec.normalizeNodeId(nodeId)

Callers 5

resolveInternalMethod · 0.90
resolveInternalMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected