(result: {
app: string;
bundleId?: string;
package?: string;
})
| 90 | } |
| 91 | |
| 92 | export function resolveDeployResultTarget(result: { |
| 93 | app: string; |
| 94 | bundleId?: string; |
| 95 | package?: string; |
| 96 | }): string { |
| 97 | return result.bundleId ?? result.package ?? result.app; |
| 98 | } |
| 99 | |
| 100 | export function serializeDeployResult(result: AppDeployResult): Record<string, unknown> { |
| 101 | return withSuccessText( |
no outgoing calls
no test coverage detected