♻️ Removed quotes from types

This commit is contained in:
Wazbat 2023-04-15 17:16:31 +02:00
parent e7d8933056
commit 959726be46

View file

@ -204,62 +204,62 @@ type GraphQLUserResponse = {
type GraphQLUser = { type GraphQLUser = {
__typename: "User", __typename: "User",
id: string; // "VXNlcjozNzg0MTMxMzIy", id: string; // "VXNlcjozNzg0MTMxMzIy",
"rest_id": string; // "3784131322", rest_id: string; // "3784131322",
"affiliates_highlighted_label": Record<string, unknown>; // {}, affiliates_highlighted_label: Record<string, unknown>; // {},
"is_blue_verified": boolean; // false, is_blue_verified: boolean; // false,
"profile_image_shape": 'Circle' | 'Square'; // "Circle", profile_image_shape: 'Circle' | 'Square'; // "Circle",
"legacy": { legacy: {
"created_at": string; // "Sat Sep 26 17:20:55 +0000 2015", created_at: string; // "Sat Sep 26 17:20:55 +0000 2015",
"default_profile": boolean // false, default_profile: boolean // false,
"default_profile_image": boolean // false, default_profile_image: boolean // false,
"description": string; // "dangered wolf#3621 https://t.co/eBTS4kksMw", description: string; // "dangered wolf#3621 https://t.co/eBTS4kksMw",
"entities": { entities: {
"description": { description: {
"urls": { urls: {
"display_url": string; // "t.me/dangeredwolf", display_url: string; // "t.me/dangeredwolf",
"expanded_url": string; // "http://t.me/dangeredwolf", expanded_url: string; // "http://t.me/dangeredwolf",
"url": string; // "https://t.co/eBTS4kksMw", url: string; // "https://t.co/eBTS4kksMw",
"indices": [ indices: [
19, 19,
42 42
] ]
}[] }[]
} }
}, },
"fast_followers_count": 0, fast_followers_count: 0,
"favourites_count": number; // 126708, favourites_count: number; // 126708,
"followers_count": number; // 4996, followers_count: number; // 4996,
"friends_count": number; // 2125, friends_count: number; // 2125,
"has_custom_timelines": boolean; // true, has_custom_timelines: boolean; // true,
"is_translator": boolean; // false, is_translator: boolean; // false,
"listed_count": number; // 69, listed_count: number; // 69,
"location": string; // "they/them", location: string; // "they/them",
"media_count": number; // 20839, media_count: number; // 20839,
"name": string; // "dangered wolf", name: string; // "dangered wolf",
"normal_followers_count": number; // 4996, normal_followers_count: number; // 4996,
"pinned_tweet_ids_str": string[]; // Array of tweet ids pinned_tweet_ids_str: string[]; // Array of tweet ids
"possibly_sensitive": boolean; // false, possibly_sensitive: boolean; // false,
"profile_banner_url": string; // "https://pbs.twimg.com/profile_banners/3784131322/1658599775", profile_banner_url: string; // "https://pbs.twimg.com/profile_banners/3784131322/1658599775",
"profile_image_url_https": string; // "https://pbs.twimg.com/profile_images/1555638673705783299/3gaaetxC_normal.jpg", profile_image_url_https: string; // "https://pbs.twimg.com/profile_images/1555638673705783299/3gaaetxC_normal.jpg",
"profile_interstitial_type": string; // "", profile_interstitial_type: string; // "",
"screen_name": string; // "dangeredwolf", screen_name: string; // "dangeredwolf",
"statuses_count": number; // 108222, statuses_count: number; // 108222,
"translator_type": string; // "regular", translator_type: string; // "regular",
"verified": boolean; // false, verified: boolean; // false,
"withheld_in_countries": [] withheld_in_countries: []
}, },
"professional": { professional: {
"rest_id": string; // "1508134739420536845", rest_id: string; // "1508134739420536845",
"professional_type": string; // "Creator", professional_type: string; // "Creator",
"category": [ category: [
{ {
"id": number; // 354, id: number; // 354,
"name": string // "Fish & Chips Restaurant", name: string // "Fish & Chips Restaurant",
"icon_name": string; // "IconBriefcaseStroke" icon_name: string; // "IconBriefcaseStroke"
} }
] ]
}, },
"legacy_extended_profile": { legacy_extended_profile: {
birthdate?: { birthdate?: {
day: number; // 7, day: number; // 7,
month: number; // 1, month: number; // 1,
@ -270,8 +270,8 @@ type GraphQLUser = {
profile_image_shape: string; // "Circle", profile_image_shape: string; // "Circle",
rest_id: string; // "3784131322", rest_id: string; // "3784131322",
}, },
"is_profile_translatable": false, is_profile_translatable: false,
"verification_info": { verification_info: {
reason: { reason: {
description: { description: {
entities: { entities: {
@ -286,6 +286,6 @@ type GraphQLUser = {
} }
} }
}, },
"business_account": {} business_account: Record<string, unknown>; // {},
} }