resolveImportInputPath resolves a potentially dotted key path from the importInputs map. For scalar inputs ("count"), it looks up importInputs["count"] directly. For object sub-key paths ("config.apiKey"), it looks up importInputs["config"]["apiKey"], supporting one level of nesting as defined by im
(importInputs map[string]any, path string)
| 535 | // supporting one level of nesting as defined by import-schema object types. |
| 536 | // Returns the resolved value and true on success, or nil and false when the path is not found. |
| 537 | func resolveImportInputPath(importInputs map[string]any, path string) (any, bool) { |
| 538 | return importinpututil.ResolvePathValue(importInputs, path) |
| 539 | } |
no test coverage detected