Improve twenty deploy cli logs (#20237)

## Before
<img width="1074" height="562" alt="image"
src="https://github.com/user-attachments/assets/a2fbe902-d34e-40e4-87c9-f344a06fd6ae"
/>

## After

<img width="1107" height="605" alt="image"
src="https://github.com/user-attachments/assets/af78276a-f4c7-42f9-9347-01d562b1a779"
/>
This commit is contained in:
martmull
2026-05-04 17:25:49 +02:00
committed by GitHub
parent a0dd7d9e22
commit 54e22423df
8 changed files with 35 additions and 9 deletions
@@ -14,6 +14,8 @@ export type AppDeployOptions = {
};
export type AppDeployResult = {
id: string;
name: string;
universalIdentifier: string;
};
@@ -49,9 +51,7 @@ const innerAppDeploy = async (
return {
success: true,
data: {
universalIdentifier: uploadResult.data.universalIdentifier,
},
data: uploadResult.data,
};
};