(target: BackendOpenTarget)
| 271 | } |
| 272 | |
| 273 | function formatOpenTarget(target: BackendOpenTarget): string { |
| 274 | return ( |
| 275 | target.app ?? |
| 276 | target.appId ?? |
| 277 | target.bundleId ?? |
| 278 | target.packageName ?? |
| 279 | target.url ?? |
| 280 | target.activity ?? |
| 281 | 'app' |
| 282 | ); |
| 283 | } |
| 284 | |
| 285 | async function resolvePushInput( |
| 286 | runtime: AgentDeviceRuntime, |
no outgoing calls
no test coverage detected
searching dependent graphs…