UNPKG

3.05 kBTypeScriptView Raw
1export interface UserRepositoryInfoResponseRootObject {
2 user: UserRepositoryInfoResponseUser;
3 status: string;
4}
5export interface UserRepositoryInfoResponseUser {
6 pk: number;
7 username: string;
8 full_name: string;
9 is_private: boolean;
10 profile_pic_url: string;
11 profile_pic_id: string;
12 is_verified: boolean;
13 has_anonymous_profile_picture: boolean;
14 media_count: number;
15 geo_media_count: number;
16 follower_count: number;
17 following_count: number;
18 following_tag_count: number;
19 biography: string;
20 can_link_entities_in_bio: boolean;
21 biography_with_entities: UserRepositoryInfoResponseBiography_with_entities;
22 external_url: string;
23 has_biography_translation: boolean;
24 can_boost_post: boolean;
25 can_see_organic_insights: boolean;
26 show_insights_terms: boolean;
27 can_convert_to_business: boolean;
28 can_create_sponsor_tags: boolean;
29 can_be_tagged_as_sponsor: boolean;
30 total_igtv_videos: number;
31 total_ar_effects: number;
32 reel_auto_archive: string;
33 is_profile_action_needed: boolean;
34 usertags_count: number;
35 usertag_review_enabled: boolean;
36 is_needy: boolean;
37 is_interest_account: boolean;
38 has_recommend_accounts: boolean;
39 has_chaining: boolean;
40 hd_profile_pic_versions: UserRepositoryInfoResponseHdProfilePicVersionsItem[];
41 hd_profile_pic_url_info: UserRepositoryInfoResponseHd_profile_pic_url_info;
42 has_placed_orders: boolean;
43 can_tag_products_from_merchants: boolean;
44 show_business_conversion_icon: boolean;
45 show_conversion_edit_entry: boolean;
46 aggregate_promote_engagement: boolean;
47 allowed_commenter_type: string;
48 is_video_creator: boolean;
49 has_profile_video_feed: boolean;
50 has_highlight_reels: boolean;
51 is_eligible_to_show_fb_cross_sharing_nux: boolean;
52 page_id_for_new_suma_biz_account: null;
53 can_be_reported_as_fraud: boolean;
54 is_business: boolean;
55 account_type: number;
56 is_call_to_action_enabled: null;
57 include_direct_blacklist_status: boolean;
58 can_follow_hashtag: boolean;
59 is_potential_business: boolean;
60 feed_post_reshare_disabled: boolean;
61 besties_count: number;
62 show_besties_badge: boolean;
63 recently_bestied_by_count: number;
64 nametag: UserRepositoryInfoResponseNametag;
65 auto_expand_chaining: boolean;
66 highlight_reshare_disabled: boolean;
67 public_email?: string;
68 address_street?: string;
69 category?: string;
70 contact_phone_number?: string;
71 public_phone_country_code?: string;
72}
73export interface UserRepositoryInfoResponseBiography_with_entities {
74 raw_text: string;
75 entities: any[];
76}
77export interface UserRepositoryInfoResponseHdProfilePicVersionsItem {
78 width: number;
79 height: number;
80 url: string;
81}
82export interface UserRepositoryInfoResponseHd_profile_pic_url_info {
83 url: string;
84 width: number;
85 height: number;
86}
87export interface UserRepositoryInfoResponseNametag {
88 mode: number;
89 gradient: string;
90 emoji: string;
91 selfie_sticker: string;
92}