Implement functionality to release funds after deployment (#7)

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

- Implement functionality to release funds after first successful deployment

Co-authored-by: IshaVenikar <ishavenikar7@gmail.com>
Reviewed-on: cerc-io/snowballtools-base#7
This commit is contained in:
2024-10-21 14:25:49 +00:00
co-authored by IshaVenikar
parent d486f44cfe
commit ef26f9b39e
10 changed files with 98 additions and 27 deletions
+3
View File
@@ -25,6 +25,7 @@ query ($projectId: String!) {
prodBranch
auctionId
deployerLrns
fundsReleased
framework
repository
webhooks
@@ -76,6 +77,7 @@ query ($organizationSlug: String!) {
framework
auctionId
deployerLrns
fundsReleased
prodBranch
webhooks
repository
@@ -193,6 +195,7 @@ query ($searchText: String!) {
framework
auctionId
deployerLrns
fundsReleased
prodBranch
webhooks
updatedAt
+1
View File
@@ -171,6 +171,7 @@ export type Project = {
framework: string;
deployerLrns: string[];
auctionId: string;
fundsReleased: boolean;
webhooks: string[];
members: ProjectMember[];
environmentVariables: EnvironmentVariable[];