(cacheKey: string, device: DeviceInfo)
| 264 | } |
| 265 | |
| 266 | function cacheResolvedTargetDevice(cacheKey: string, device: DeviceInfo): DeviceInfo { |
| 267 | resolveTargetDeviceCacheScope.getStore()?.set(cacheKey, { ...device }); |
| 268 | return device; |
| 269 | } |
| 270 | |
| 271 | function buildResolveTargetDeviceCacheKey( |
| 272 | request: DeviceInventoryRequest, |
no test coverage detected