Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lawvs/gitlab-event-types
TypeScript definitions for GitLab Webhook Event.
https://github.com/lawvs/gitlab-event-types
definitions gitlab types typescript webhook
Last synced: 24 days ago
JSON representation
TypeScript definitions for GitLab Webhook Event.
- Host: GitHub
- URL: https://github.com/lawvs/gitlab-event-types
- Owner: lawvs
- License: mit
- Created: 2022-03-26T15:30:16.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-10T07:46:07.000Z (7 months ago)
- Last Synced: 2024-09-30T03:05:28.650Z (about 1 month ago)
- Topics: definitions, gitlab, types, typescript, webhook
- Language: TypeScript
- Homepage:
- Size: 27.3 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GitLab Event Types
[![Build](https://github.com/lawvs/gitlab-event-types/actions/workflows/build.yml/badge.svg)](https://github.com/lawvs/gitlab-event-types/actions/workflows/build.yml)
[![npm](https://img.shields.io/npm/v/gitlab-event-types)](https://www.npmjs.com/package/gitlab-event-types)TypeScript definitions for [GitLab Webhook Event](https://docs.gitlab.com/ee/user/project/integrations/webhook_events.html).
## Install
```sh
# Use npm
npm install -D gitlab-event-types# Use yarn
yarn add -D gitlab-event-types# Use pnpm
pnpm add -D gitlab-event-types
```## Usages
```ts
import type { WebhookEvents, PushEvent } from "gitlab-event-types";const isPushEvent = (event: WebhookEvents): event is PushEvent =>
"object_kind" in event && event.object_kind === "push";const hookHandler = async (event: WebhookEvents) => {
if (isPushEvent(event)) {
console.log(event.commits);
}
};
```Or
```ts
import type * as GitlabEventTypes from "gitlab-event-types";const pushEventHandler = async (event: GitlabEventTypes.PushEvent) => {
console.log(event.object_kind);
};
```## Definitions
```ts
export type WebhookEvents =
| PushEvent
| TagPushEvent
| IssueEvent
| NoteEvent
| MergeRequestEvent
| WikiPageEvent
| PipelineEvent
| BuildEvent
| DeploymentEvent
| GroupMemberEvent
| SubgroupEvent
| FeatureFlagEvent
| ReleaseEvent;
```## Credits
Thanks to [excaliburhan/node-gitlab-webhook](https://github.com/excaliburhan/node-gitlab-webhook)(MIT License).
## License
MIT