MCPcopy Create free account
hub / github.com/ChainSafe/ChainGuardian / IGithubRelease

Interface IGithubRelease

types/githubRelease.dto.ts:1–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1export interface IGithubRelease {
2 url: string;
3 // eslint-disable-next-line camelcase
4 html_url: string;
5 // eslint-disable-next-line camelcase
6 assets_url: string;
7 // eslint-disable-next-line camelcase
8 upload_url: string;
9 // eslint-disable-next-line camelcase
10 tarball_url: string;
11 // eslint-disable-next-line camelcase
12 zipball_url: string;
13 id: number;
14 // eslint-disable-next-line camelcase
15 node_id: string;
16 // eslint-disable-next-line camelcase
17 tag_name: string;
18 // eslint-disable-next-line camelcase
19 target_commitish: string;
20 name: string;
21 body: string;
22 draft: boolean;
23 prerelease: boolean;
24 // eslint-disable-next-line camelcase
25 created_at: string;
26 // eslint-disable-next-line camelcase
27 published_at: string;
28 author: IAuthor;
29 assets?: IAssetsEntity[];
30}
31
32export interface IAuthor {
33 login: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected