Display deployment build logs (#8)

Part of [Service provider auctions for web deployments](https://www.notion.so/Service-provider-auctions-for-web-deployments-104a6b22d47280dbad51d28aa3a91d75)

Co-authored-by: Adw8 <adwaitgharpure@gmail.com>
Co-authored-by: Neeraj <neeraj.rtly@gmail.com>
Co-authored-by: IshaVenikar <ishavenikar7@gmail.com>
Reviewed-on: cerc-io/snowballtools-base#8
This commit is contained in:
2024-10-22 09:12:59 +00:00
co-authored by Adw8 Neeraj IshaVenikar
parent ef26f9b39e
commit 5152952a45
14 changed files with 316 additions and 115 deletions
+6 -1
View File
@@ -136,7 +136,11 @@ query ($projectId: String!) {
commitHash
commitMessage
url
deployerLrn
deployer {
deployerId
deployerLrn,
deployerApiUrl,
}
environment
isCurrent
baseDomain
@@ -148,6 +152,7 @@ query ($projectId: String!) {
name
email
}
applicationDeploymentRequestId
}
}
`;
+8 -1
View File
@@ -105,7 +105,7 @@ export type Deployment = {
commitHash: string;
commitMessage: string;
url?: string;
deployerLrn: string;
deployer: Deployer;
environment: Environment;
isCurrent: boolean;
baseDomain?: string;
@@ -113,8 +113,15 @@ export type Deployment = {
createdBy: User;
createdAt: string;
updatedAt: string;
applicationDeploymentRequestId: string;
};
export type Deployer = {
deployerApiUrl: string;
deployerId: string;
deployerLrn: string;
}
export type OrganizationMember = {
id: string;
member: User;