You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docker-infisical/frontend/src/hooks/api/integrationAuth/types.ts

68 lines
995 B

export type IntegrationAuth = {
_id: string;
integration: string;
workspace: string;
__v: number;
createdAt: string;
updatedAt: string;
algorithm: string;
keyEncoding: string;
};
export type App = {
name: string;
appId?: string;
owner?: string;
secretGroups?: string[];
};
export type Team = {
name: string;
teamId: string;
};
export type Environment = {
name: string;
environmentId: string;
};
export type ChecklyGroup = {
name: string;
groupId: number;
};
export type Container = {
name: string;
containerId: string;
};
export type Org = {
name: string;
orgId: string;
};
export type Project = {
name: string;
projectId: string;
};
export type Service = {
name: string;
serviceId: string;
};
export type BitBucketWorkspace = {
uuid: string;
name: string;
slug: string;
}
export type NorthflankSecretGroup = {
name: string;
groupId: string;
}
export type TeamCityBuildConfig = {
name: string;
buildConfigId: string;
}