Skip to content

Commit

Permalink
Add typing exports for Webhook Events (#3511)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdalrymple authored Jan 22, 2024
1 parent 1112db9 commit 9658787
Show file tree
Hide file tree
Showing 3 changed files with 726 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .autorc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ labels:
description: Changes upgrade or remove dependencies
releaseType: patch

- name: type:types
changelogTitle: 🗃️ Typescript Definitions
description: Changes only affect typescript definitions
releaseType: patch

- name: type:testing
changelogTitle: 🚨 Tests
description: Changes affect test code
Expand Down
4 changes: 2 additions & 2 deletions packages/core/src/resources/Projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@ export interface SimpleProjectSchema extends CondensedProjectSchema {
path_with_namespace: string;
created_at: string;
default_branch: string;
topics?: string[];
topics: string[] | null;
ssh_url_to_repo: string;
http_url_to_repo: string;
readme_url: string;
forks_count: number;
avatar_url?: string;
avatar_url: string | null;
star_count: number;
last_activity_at: string;
namespace: CondensedNamespaceSchema;
Expand Down
Loading

0 comments on commit 9658787

Please sign in to comment.