Skip to content

Commit

Permalink
feat: add pull label details
Browse files Browse the repository at this point in the history
  • Loading branch information
nistei committed Feb 26, 2021
1 parent 7b4cae5 commit f45f31f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flybywiresim/api-client",
"version": "0.9.0",
"version": "0.10.0",
"description": "Client library for the FlyByWire Simulations API",
"main": "lib/index.js",
"scripts": {
Expand Down
8 changes: 7 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,17 @@ export declare class ReleaseInfo {
htmlUrl: string;
}

export declare class PullLabel {
id: string;
name: string;
color: string;
}

export declare class PullInfo {
number: number;
title: string;
author: string;
labels: string[];
labels: PullLabel[];
isDraft: boolean;
}

Expand Down

0 comments on commit f45f31f

Please sign in to comment.