2024-06-05 16:38:19 +00:00
|
|
|
import {
|
|
|
|
ApolloClient,
|
|
|
|
DefaultOptions,
|
|
|
|
InMemoryCache,
|
|
|
|
NormalizedCacheObject,
|
|
|
|
} from "@apollo/client";
|
2024-01-17 08:52:15 +00:00
|
|
|
|
2024-06-05 16:38:19 +00:00
|
|
|
import * as queries from "./queries";
|
|
|
|
import * as types from "./types";
|
|
|
|
import * as mutations from "./mutations";
|
2024-01-17 08:52:15 +00:00
|
|
|
|
|
|
|
export interface GraphQLConfig {
|
|
|
|
gqlEndpoint: string;
|
|
|
|
}
|
|
|
|
|
2024-01-23 11:47:02 +00:00
|
|
|
// TODO: check options
|
|
|
|
const defaultOptions: DefaultOptions = {
|
|
|
|
watchQuery: {
|
2024-06-05 16:38:19 +00:00
|
|
|
fetchPolicy: "no-cache",
|
|
|
|
errorPolicy: "ignore",
|
2024-01-23 11:47:02 +00:00
|
|
|
},
|
|
|
|
query: {
|
2024-06-05 16:38:19 +00:00
|
|
|
fetchPolicy: "no-cache",
|
|
|
|
errorPolicy: "all",
|
|
|
|
},
|
2024-01-23 11:47:02 +00:00
|
|
|
};
|
|
|
|
|
2024-01-17 08:52:15 +00:00
|
|
|
export class GQLClient {
|
|
|
|
private client: ApolloClient<NormalizedCacheObject>;
|
|
|
|
|
2024-06-05 16:38:19 +00:00
|
|
|
constructor(config: GraphQLConfig) {
|
2024-01-17 08:52:15 +00:00
|
|
|
this.client = new ApolloClient({
|
|
|
|
uri: config.gqlEndpoint,
|
2024-01-23 11:47:02 +00:00
|
|
|
cache: new InMemoryCache(),
|
2024-02-22 11:56:26 +00:00
|
|
|
defaultOptions,
|
2024-06-05 16:38:19 +00:00
|
|
|
credentials: "include",
|
2024-01-17 08:52:15 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-06-05 16:38:19 +00:00
|
|
|
async getUser(): Promise<types.GetUserResponse> {
|
2024-01-17 08:52:15 +00:00
|
|
|
const { data } = await this.client.query({
|
2024-06-05 16:38:19 +00:00
|
|
|
query: queries.getUser,
|
2024-01-17 08:52:15 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
2024-01-18 04:34:02 +00:00
|
|
|
|
2024-06-05 16:38:19 +00:00
|
|
|
async getProject(projectId: string): Promise<types.GetProjectResponse> {
|
2024-01-25 11:08:40 +00:00
|
|
|
const { data } = await this.client.query({
|
2024-02-14 06:46:01 +00:00
|
|
|
query: queries.getProject,
|
2024-01-25 11:08:40 +00:00
|
|
|
variables: {
|
2024-06-05 16:38:19 +00:00
|
|
|
projectId,
|
|
|
|
},
|
2024-01-25 11:08:40 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2024-06-05 16:38:19 +00:00
|
|
|
async getProjectsInOrganization(
|
|
|
|
organizationSlug: string
|
|
|
|
): Promise<types.GetProjectsInOrganizationResponse> {
|
2024-01-29 11:01:03 +00:00
|
|
|
const { data } = await this.client.query({
|
2024-02-14 06:46:01 +00:00
|
|
|
query: queries.getProjectsInOrganization,
|
2024-01-29 11:01:03 +00:00
|
|
|
variables: {
|
2024-06-05 16:38:19 +00:00
|
|
|
organizationSlug,
|
|
|
|
},
|
2024-01-29 11:01:03 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2024-06-05 16:38:19 +00:00
|
|
|
async getOrganizations(): Promise<types.GetOrganizationsResponse> {
|
2024-01-18 04:34:02 +00:00
|
|
|
const { data } = await this.client.query({
|
2024-06-05 16:38:19 +00:00
|
|
|
query: queries.getOrganizations,
|
2024-01-18 04:34:02 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
2024-01-18 12:20:50 +00:00
|
|
|
|
2024-06-05 16:38:19 +00:00
|
|
|
async getDeployments(
|
|
|
|
projectId: string
|
|
|
|
): Promise<types.GetDeploymentsResponse> {
|
2024-01-18 12:20:50 +00:00
|
|
|
const { data } = await this.client.query({
|
2024-02-14 06:46:01 +00:00
|
|
|
query: queries.getDeployments,
|
2024-01-18 12:20:50 +00:00
|
|
|
variables: {
|
2024-06-05 16:38:19 +00:00
|
|
|
projectId,
|
|
|
|
},
|
2024-01-18 12:20:50 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
2024-01-23 11:47:02 +00:00
|
|
|
|
2024-06-05 16:38:19 +00:00
|
|
|
async getEnvironmentVariables(
|
|
|
|
projectId: string
|
|
|
|
): Promise<types.GetEnvironmentVariablesResponse> {
|
2024-01-25 05:14:51 +00:00
|
|
|
const { data } = await this.client.query({
|
2024-02-14 06:46:01 +00:00
|
|
|
query: queries.getEnvironmentVariables,
|
2024-01-25 05:14:51 +00:00
|
|
|
variables: {
|
2024-06-05 16:38:19 +00:00
|
|
|
projectId,
|
|
|
|
},
|
2024-01-25 05:14:51 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2024-06-05 16:38:19 +00:00
|
|
|
async getProjectMembers(
|
|
|
|
projectId: string
|
|
|
|
): Promise<types.GetProjectMembersResponse> {
|
2024-01-31 11:39:29 +00:00
|
|
|
const result = await this.client.query({
|
2024-02-14 06:46:01 +00:00
|
|
|
query: queries.getProjectMembers,
|
2024-01-23 11:47:02 +00:00
|
|
|
variables: {
|
2024-06-05 16:38:19 +00:00
|
|
|
projectId,
|
|
|
|
},
|
2024-01-23 11:47:02 +00:00
|
|
|
});
|
|
|
|
|
2024-01-31 11:39:29 +00:00
|
|
|
return result.data;
|
2024-01-23 11:47:02 +00:00
|
|
|
}
|
|
|
|
|
2024-06-05 16:38:19 +00:00
|
|
|
async addProjectMember(
|
|
|
|
projectId: string,
|
|
|
|
data: types.AddProjectMemberInput
|
|
|
|
): Promise<types.AddProjectMemberResponse> {
|
2024-02-01 10:04:17 +00:00
|
|
|
const result = await this.client.mutate({
|
2024-02-14 06:46:01 +00:00
|
|
|
mutation: mutations.addProjectMember,
|
2024-02-01 10:04:17 +00:00
|
|
|
variables: {
|
|
|
|
projectId,
|
2024-06-05 16:38:19 +00:00
|
|
|
data,
|
|
|
|
},
|
2024-02-01 10:04:17 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return result.data;
|
|
|
|
}
|
|
|
|
|
2024-06-05 16:38:19 +00:00
|
|
|
async updateProjectMember(
|
|
|
|
projectMemberId: string,
|
|
|
|
data: types.UpdateProjectMemberInput
|
|
|
|
): Promise<types.UpdateProjectMemberResponse> {
|
2024-01-31 11:39:29 +00:00
|
|
|
const result = await this.client.mutate({
|
2024-02-14 06:46:01 +00:00
|
|
|
mutation: mutations.updateProjectMember,
|
2024-01-23 11:47:02 +00:00
|
|
|
variables: {
|
2024-01-31 11:39:29 +00:00
|
|
|
projectMemberId,
|
2024-06-05 16:38:19 +00:00
|
|
|
data,
|
|
|
|
},
|
2024-01-23 11:47:02 +00:00
|
|
|
});
|
|
|
|
|
2024-01-31 11:39:29 +00:00
|
|
|
return result.data;
|
|
|
|
}
|
|
|
|
|
2024-06-05 16:38:19 +00:00
|
|
|
async removeProjectMember(
|
|
|
|
projectMemberId: string
|
|
|
|
): Promise<types.RemoveProjectMemberResponse> {
|
2024-01-31 11:39:29 +00:00
|
|
|
const result = await this.client.mutate({
|
2024-02-14 06:46:01 +00:00
|
|
|
mutation: mutations.removeProjectMember,
|
2024-01-31 11:39:29 +00:00
|
|
|
variables: {
|
2024-06-05 16:38:19 +00:00
|
|
|
projectMemberId,
|
|
|
|
},
|
2024-01-31 11:39:29 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return result.data;
|
2024-01-23 11:47:02 +00:00
|
|
|
}
|
2024-01-24 14:47:43 +00:00
|
|
|
|
2024-06-05 16:38:19 +00:00
|
|
|
async searchProjects(
|
|
|
|
searchText: string
|
|
|
|
): Promise<types.SearchProjectsResponse> {
|
2024-01-24 14:47:43 +00:00
|
|
|
const { data } = await this.client.query({
|
2024-02-14 06:46:01 +00:00
|
|
|
query: queries.searchProjects,
|
2024-01-24 14:47:43 +00:00
|
|
|
variables: {
|
2024-06-05 16:38:19 +00:00
|
|
|
searchText,
|
|
|
|
},
|
2024-01-24 14:47:43 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
2024-01-25 05:14:51 +00:00
|
|
|
|
2024-06-05 16:38:19 +00:00
|
|
|
async addEnvironmentVariables(
|
|
|
|
projectId: string,
|
|
|
|
data: types.AddEnvironmentVariableInput[]
|
|
|
|
): Promise<types.AddEnvironmentVariablesResponse> {
|
2024-02-05 10:51:55 +00:00
|
|
|
const result = await this.client.mutate({
|
2024-02-14 06:46:01 +00:00
|
|
|
mutation: mutations.addEnvironmentVariables,
|
2024-01-25 05:14:51 +00:00
|
|
|
variables: {
|
|
|
|
projectId,
|
2024-06-05 16:38:19 +00:00
|
|
|
data,
|
|
|
|
},
|
2024-01-25 05:14:51 +00:00
|
|
|
});
|
|
|
|
|
2024-02-05 10:51:55 +00:00
|
|
|
return result.data;
|
2024-01-25 05:14:51 +00:00
|
|
|
}
|
2024-01-25 05:47:44 +00:00
|
|
|
|
2024-06-05 16:38:19 +00:00
|
|
|
async updateEnvironmentVariable(
|
|
|
|
environmentVariableId: string,
|
|
|
|
data: types.UpdateEnvironmentVariableInput
|
|
|
|
): Promise<types.UpdateEnvironmentVariableResponse> {
|
2024-02-05 10:51:55 +00:00
|
|
|
const result = await this.client.mutate({
|
2024-02-14 06:46:01 +00:00
|
|
|
mutation: mutations.updateEnvironmentVariable,
|
2024-01-31 05:06:22 +00:00
|
|
|
variables: {
|
|
|
|
environmentVariableId,
|
2024-06-05 16:38:19 +00:00
|
|
|
data,
|
|
|
|
},
|
2024-01-31 05:06:22 +00:00
|
|
|
});
|
|
|
|
|
2024-02-05 10:51:55 +00:00
|
|
|
return result.data;
|
2024-01-31 05:06:22 +00:00
|
|
|
}
|
|
|
|
|
2024-06-05 16:38:19 +00:00
|
|
|
async removeEnvironmentVariable(
|
|
|
|
environmentVariableId: string
|
|
|
|
): Promise<types.RemoveEnvironmentVariableResponse> {
|
2024-01-31 05:06:22 +00:00
|
|
|
const { data } = await this.client.mutate({
|
2024-02-14 06:46:01 +00:00
|
|
|
mutation: mutations.removeEnvironmentVariable,
|
2024-01-31 05:06:22 +00:00
|
|
|
variables: {
|
2024-06-05 16:38:19 +00:00
|
|
|
environmentVariableId,
|
|
|
|
},
|
2024-01-31 05:06:22 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2024-06-05 16:38:19 +00:00
|
|
|
async updateDeploymentToProd(
|
|
|
|
deploymentId: string
|
|
|
|
): Promise<types.UpdateDeploymentToProdResponse> {
|
2024-01-25 05:47:44 +00:00
|
|
|
const { data } = await this.client.mutate({
|
2024-02-14 06:46:01 +00:00
|
|
|
mutation: mutations.updateDeploymentToProd,
|
2024-01-25 05:47:44 +00:00
|
|
|
variables: {
|
2024-06-05 16:38:19 +00:00
|
|
|
deploymentId,
|
|
|
|
},
|
2024-01-25 05:47:44 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
2024-01-25 11:08:40 +00:00
|
|
|
|
2024-06-24 22:38:01 +00:00
|
|
|
async addProjectFromTemplate(
|
|
|
|
organizationSlug: string,
|
2024-10-18 12:37:01 +00:00
|
|
|
data: types.AddProjectFromTemplateInput,
|
|
|
|
lrn?: string,
|
|
|
|
auctionParams?: types.AuctionParams,
|
2024-10-21 11:05:35 +00:00
|
|
|
environmentVariables?: types.AddEnvironmentVariableInput[]
|
2024-06-24 22:38:01 +00:00
|
|
|
): Promise<types.AddProjectFromTemplateResponse> {
|
|
|
|
const result = await this.client.mutate({
|
|
|
|
mutation: mutations.addProjectFromTemplate,
|
|
|
|
variables: {
|
|
|
|
organizationSlug,
|
|
|
|
data,
|
2024-10-18 12:37:01 +00:00
|
|
|
lrn,
|
2024-10-21 11:05:35 +00:00
|
|
|
auctionParams,
|
|
|
|
environmentVariables
|
2024-06-24 22:38:01 +00:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
return result.data;
|
|
|
|
}
|
|
|
|
|
2024-06-05 16:38:19 +00:00
|
|
|
async addProject(
|
|
|
|
organizationSlug: string,
|
2024-10-18 12:37:01 +00:00
|
|
|
data: types.AddProjectInput,
|
|
|
|
lrn?: string,
|
|
|
|
auctionParams?: types.AuctionParams,
|
2024-10-21 11:05:35 +00:00
|
|
|
environmentVariables?: types.AddEnvironmentVariableInput[]
|
2024-06-05 16:38:19 +00:00
|
|
|
): Promise<types.AddProjectResponse> {
|
2024-02-05 12:27:08 +00:00
|
|
|
const result = await this.client.mutate({
|
2024-02-14 06:46:01 +00:00
|
|
|
mutation: mutations.addProject,
|
2024-02-01 12:40:15 +00:00
|
|
|
variables: {
|
2024-02-07 13:11:54 +00:00
|
|
|
organizationSlug,
|
2024-06-05 16:38:19 +00:00
|
|
|
data,
|
2024-10-18 12:37:01 +00:00
|
|
|
lrn,
|
2024-10-21 11:05:35 +00:00
|
|
|
auctionParams,
|
|
|
|
environmentVariables
|
2024-06-05 16:38:19 +00:00
|
|
|
},
|
2024-02-01 12:40:15 +00:00
|
|
|
});
|
|
|
|
|
2024-02-05 12:27:08 +00:00
|
|
|
return result.data;
|
2024-02-01 12:40:15 +00:00
|
|
|
}
|
|
|
|
|
2024-06-05 16:38:19 +00:00
|
|
|
async updateProject(
|
|
|
|
projectId: string,
|
|
|
|
data: types.UpdateProjectInput
|
|
|
|
): Promise<types.UpdateProjectResponse> {
|
2024-02-14 12:05:02 +00:00
|
|
|
const result = await this.client.mutate({
|
2024-02-14 06:46:01 +00:00
|
|
|
mutation: mutations.updateProjectMutation,
|
2024-01-25 11:08:40 +00:00
|
|
|
variables: {
|
|
|
|
projectId,
|
2024-06-05 16:38:19 +00:00
|
|
|
data,
|
|
|
|
},
|
2024-01-30 08:31:09 +00:00
|
|
|
});
|
|
|
|
|
2024-02-14 12:05:02 +00:00
|
|
|
return result.data;
|
2024-01-30 08:31:09 +00:00
|
|
|
}
|
|
|
|
|
2024-06-05 16:38:19 +00:00
|
|
|
async updateDomain(
|
|
|
|
domainId: string,
|
|
|
|
data: types.UpdateDomainInput
|
|
|
|
): Promise<types.UpdateDomainResponse> {
|
2024-02-14 12:05:02 +00:00
|
|
|
const result = await this.client.mutate({
|
2024-02-14 06:46:01 +00:00
|
|
|
mutation: mutations.updateDomainMutation,
|
2024-01-30 08:31:09 +00:00
|
|
|
variables: {
|
|
|
|
domainId,
|
2024-06-05 16:38:19 +00:00
|
|
|
data,
|
|
|
|
},
|
2024-01-25 11:08:40 +00:00
|
|
|
});
|
|
|
|
|
2024-02-14 12:05:02 +00:00
|
|
|
return result.data;
|
2024-01-25 11:08:40 +00:00
|
|
|
}
|
2024-01-25 12:04:13 +00:00
|
|
|
|
2024-06-05 16:38:19 +00:00
|
|
|
async redeployToProd(
|
|
|
|
deploymentId: string
|
|
|
|
): Promise<types.RedeployToProdResponse> {
|
2024-01-25 12:04:13 +00:00
|
|
|
const { data } = await this.client.mutate({
|
2024-02-14 06:46:01 +00:00
|
|
|
mutation: mutations.redeployToProd,
|
2024-01-25 12:04:13 +00:00
|
|
|
variables: {
|
2024-06-05 16:38:19 +00:00
|
|
|
deploymentId,
|
|
|
|
},
|
2024-01-25 12:04:13 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
2024-01-29 11:01:03 +00:00
|
|
|
|
2024-06-05 16:38:19 +00:00
|
|
|
async deleteProject(projectId: string): Promise<types.DeleteProjectResponse> {
|
2024-01-29 11:01:03 +00:00
|
|
|
const { data } = await this.client.mutate({
|
2024-02-14 06:46:01 +00:00
|
|
|
mutation: mutations.deleteProject,
|
2024-01-29 11:01:03 +00:00
|
|
|
variables: {
|
2024-06-05 16:38:19 +00:00
|
|
|
projectId,
|
|
|
|
},
|
2024-01-29 11:01:03 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
2024-01-29 12:09:51 +00:00
|
|
|
|
2024-06-05 16:38:19 +00:00
|
|
|
async deleteDomain(domainId: string): Promise<types.DeleteDomainResponse> {
|
2024-02-01 03:34:24 +00:00
|
|
|
const { data } = await this.client.mutate({
|
2024-02-14 06:46:01 +00:00
|
|
|
mutation: mutations.deleteDomain,
|
2024-02-01 03:34:24 +00:00
|
|
|
variables: {
|
2024-06-05 16:38:19 +00:00
|
|
|
domainId,
|
|
|
|
},
|
2024-02-01 03:34:24 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2024-06-05 16:38:19 +00:00
|
|
|
async rollbackDeployment(
|
|
|
|
projectId: string,
|
|
|
|
deploymentId: string
|
|
|
|
): Promise<types.RollbackDeploymentResponse> {
|
2024-01-29 12:09:51 +00:00
|
|
|
const { data } = await this.client.mutate({
|
2024-02-14 06:46:01 +00:00
|
|
|
mutation: mutations.rollbackDeployment,
|
2024-01-29 12:09:51 +00:00
|
|
|
variables: {
|
|
|
|
projectId,
|
2024-06-05 16:38:19 +00:00
|
|
|
deploymentId,
|
|
|
|
},
|
2024-01-29 12:09:51 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
2024-03-27 16:58:56 +00:00
|
|
|
|
2024-06-05 16:38:19 +00:00
|
|
|
async deleteDeployment(
|
|
|
|
deploymentId: string
|
|
|
|
): Promise<types.DeleteDeploymentResponse> {
|
2024-03-27 16:58:56 +00:00
|
|
|
const { data } = await this.client.mutate({
|
|
|
|
mutation: mutations.deleteDeployment,
|
|
|
|
variables: {
|
2024-06-05 16:38:19 +00:00
|
|
|
deploymentId,
|
|
|
|
},
|
2024-03-27 16:58:56 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
2024-01-29 12:48:43 +00:00
|
|
|
|
2024-06-05 16:38:19 +00:00
|
|
|
async addDomain(
|
|
|
|
projectId: string,
|
|
|
|
data: types.AddDomainInput
|
|
|
|
): Promise<types.AddDomainResponse> {
|
2024-02-14 12:05:02 +00:00
|
|
|
const result = await this.client.mutate({
|
2024-02-14 06:46:01 +00:00
|
|
|
mutation: mutations.addDomain,
|
2024-01-29 12:48:43 +00:00
|
|
|
variables: {
|
|
|
|
projectId,
|
2024-06-05 16:38:19 +00:00
|
|
|
data,
|
|
|
|
},
|
2024-01-29 12:48:43 +00:00
|
|
|
});
|
|
|
|
|
2024-02-14 12:05:02 +00:00
|
|
|
return result.data;
|
2024-01-29 12:48:43 +00:00
|
|
|
}
|
|
|
|
|
2024-06-05 16:38:19 +00:00
|
|
|
async getDomains(
|
|
|
|
projectId: string,
|
|
|
|
filter?: types.FilterDomainInput
|
|
|
|
): Promise<types.GetDomainsResponse> {
|
2024-01-29 12:48:43 +00:00
|
|
|
const { data } = await this.client.query({
|
2024-02-14 06:46:01 +00:00
|
|
|
query: queries.getDomains,
|
2024-01-29 12:48:43 +00:00
|
|
|
variables: {
|
2024-02-06 08:48:06 +00:00
|
|
|
projectId,
|
2024-06-05 16:38:19 +00:00
|
|
|
filter,
|
|
|
|
},
|
2024-01-29 12:48:43 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
2024-01-30 14:20:53 +00:00
|
|
|
|
2024-06-05 16:38:19 +00:00
|
|
|
async authenticateGitHub(
|
|
|
|
code: string
|
|
|
|
): Promise<types.AuthenticateGitHubResponse> {
|
2024-01-30 14:20:53 +00:00
|
|
|
const { data } = await this.client.mutate({
|
2024-02-14 06:46:01 +00:00
|
|
|
mutation: mutations.authenticateGitHub,
|
2024-01-30 14:20:53 +00:00
|
|
|
variables: {
|
2024-06-05 16:38:19 +00:00
|
|
|
code,
|
|
|
|
},
|
2024-01-30 14:20:53 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
2024-01-31 13:21:53 +00:00
|
|
|
|
2024-06-05 16:38:19 +00:00
|
|
|
async unauthenticateGithub(): Promise<types.UnauthenticateGitHubResponse> {
|
2024-01-31 13:21:53 +00:00
|
|
|
const { data } = await this.client.mutate({
|
2024-06-05 16:38:19 +00:00
|
|
|
mutation: mutations.unauthenticateGitHub,
|
2024-01-31 13:21:53 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
2024-10-18 12:37:01 +00:00
|
|
|
|
|
|
|
async getAuctionData(auctionId: string): Promise<types.Auction> {
|
|
|
|
const { data } = await this.client.query({
|
|
|
|
query: queries.getAuctionData,
|
|
|
|
variables: {
|
|
|
|
auctionId,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
return data.getAuctionData;
|
|
|
|
}
|
2024-10-23 15:36:19 +00:00
|
|
|
|
|
|
|
async getDeployers(): Promise<types.GetDeployersResponse> {
|
|
|
|
const { data } = await this.client.query({
|
|
|
|
query: queries.getDeployers,
|
|
|
|
});
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
2024-01-17 08:52:15 +00:00
|
|
|
}
|