Skip to content

Instantly share code, notes, and snippets.

@Mattamorphic
Created September 24, 2019 08:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mattamorphic/80a070e8bb65f4a3cddab323fc9f0a9a to your computer and use it in GitHub Desktop.
Save Mattamorphic/80a070e8bb65f4a3cddab323fc9f0a9a to your computer and use it in GitHub Desktop.
Example Typescript Webhooks
export enum AccountType {
USER = 'User',
ORGANIZATION = 'Organization'
}
export interface Account {
login: string;
id: number;
node_id: string;
avatar_url: string;
gravatar_id: string;
url: string;
html_url: string;
followers_url: string;
following_url: string;
gists_url: string;
starred_url: string;
subscriptions_url: string;
organizations_url: string;
repos_url: string;
events_url: string;
received_events_url: string;
type: AccountType;
site_admin: boolean
}
import {Account} from './account';
export interface Repository {
id: number;
node_id: string;
name: string;
full_name: string;
owner: Account;
private: boolean;
html_url: string
description: string;
fork: boolean;
url: string
archive_url: string
assignees_url: string
blobs_url: string
branches_url: string
collaborators_url: string
comments_url: string
commits_url: string
compare_url: string
contents_url: string
contributors_url: string
deployments_url: string
downloads_url: string
events_url: string
forks_url: string
git_commits_url: string
git_refs_url: string
git_tags_url: string
git_url: string;
issue_comment_url: string
issue_events_url: string
issues_url: string
keys_url: string
labels_url: string
languages_url: string
merges_url: string
milestones_url: string
notifications_url: string
pulls_url: string
releases_url: string
ssh_url: string;
stargazers_url: string
statuses_url: string
subscribers_url: string
subscription_url: string
tags_url: string
teams_url: string
trees_url: string
clone_url: string
mirror_url: string;
hooks_url: string
svn_url: string
homepage: string
language: string | null;
forks_count: number
stargazers_count: number
watchers_count: number
size: number;
default_branch: string;
open_issues_count: number
is_template: boolean;
topics: string[];
has_issues: boolean;
has_projects: boolean;
has_wiki: boolean;
has_pages: boolean;
has_downloads: boolean;
archived: boolean;
disabled: boolean;
pushed_at: string;
created_at: string;
updated_at: string;
permissions: object;
allow_rebase_merge: boolean;
template_repository: null;
allow_squash_merge: boolean;
allow_merge_commit: boolean;
subscribers_count: number
network_count: number
}
export interface Repositories {
total_count: number;
repositories: Repository[];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment