mirror of
https://github.com/DefectingCat/DefectingCat.github.io
synced 2025-07-16 01:01:38 +00:00
✨ Add http base authentication for gist
This commit is contained in:
@ -114,6 +114,12 @@ export enum GistsOwnerType {
|
||||
}
|
||||
|
||||
// Generated by https://quicktype.io
|
||||
export interface SignalGist extends Gist {
|
||||
forks: any[];
|
||||
history: History[];
|
||||
}
|
||||
// Generated by https://quicktype.io
|
||||
|
||||
export interface GithubUser {
|
||||
login: string;
|
||||
id: number;
|
||||
@ -137,7 +143,7 @@ export interface GithubUser {
|
||||
company: null;
|
||||
blog: string;
|
||||
location: null;
|
||||
email: null;
|
||||
email: string;
|
||||
hireable: null;
|
||||
bio: string;
|
||||
twitter_username: string;
|
||||
@ -147,10 +153,18 @@ export interface GithubUser {
|
||||
following: number;
|
||||
created_at: string;
|
||||
updated_at: string;
|
||||
private_gists: number;
|
||||
total_private_repos: number;
|
||||
owned_private_repos: number;
|
||||
disk_usage: number;
|
||||
collaborators: number;
|
||||
two_factor_authentication: boolean;
|
||||
plan: Plan;
|
||||
}
|
||||
|
||||
// Generated by https://quicktype.io
|
||||
export interface SignalGist extends Gist {
|
||||
forks: any[];
|
||||
history: History[];
|
||||
export interface Plan {
|
||||
name: string;
|
||||
space: number;
|
||||
collaborators: number;
|
||||
private_repos: number;
|
||||
}
|
||||
|
Reference in New Issue
Block a user