UNPKG

@dxdeveloperexperience/hygie

Version:

Hygie is an easy-to-use Open-Source REST API allowing you to interact with GIT events. This NestJS API expose a set of customizable rules to automate your project's life cycle.

16 lines (14 loc) 308 B
import { GitlabCommit, GitlabProject } from './gitlab.interface'; /** * GitlabPushEvent dto */ export interface GitlabPushEvent { commits: GitlabCommit[]; project_id: number; before: string; after: string; ref: string; object_kind: string; project: GitlabProject; user_username: string; }