UNPKG

5.51 kBTypeScriptView Raw
1export interface HighlightsRepositoryEditReelResponseRootObject {
2 reel: HighlightsRepositoryEditReelResponseReel;
3 status: string;
4}
5export interface HighlightsRepositoryEditReelResponseReel {
6 id: string;
7 latest_reel_media: number;
8 seen: null;
9 can_reply: boolean;
10 can_reshare: boolean;
11 reel_type: string;
12 cover_media: HighlightsRepositoryEditReelResponseCover_media;
13 user: HighlightsRepositoryEditReelResponseUser;
14 items: HighlightsRepositoryEditReelResponseItemsItem[];
15 ranked_position: number;
16 title: string;
17 created_at: number;
18 seen_ranked_position: number;
19 prefetch_count: number;
20 media_count: number;
21 contains_stitched_media_blocked_by_rm: boolean;
22 has_pride_media: boolean;
23}
24export interface HighlightsRepositoryEditReelResponseCover_media {
25 cropped_image_version: HighlightsRepositoryEditReelResponseCropped_image_version;
26 crop_rect: number[];
27 media_id: string;
28 full_image_version: HighlightsRepositoryEditReelResponseFull_image_version;
29}
30export interface HighlightsRepositoryEditReelResponseCropped_image_version {
31 width: number;
32 height: number;
33 url: string;
34 estimated_scans_sizes: number[];
35}
36export interface HighlightsRepositoryEditReelResponseFull_image_version {
37 width: number;
38 height: number;
39 url: string;
40 estimated_scans_sizes: number[];
41}
42export interface HighlightsRepositoryEditReelResponseUser {
43 pk: number;
44 username: string;
45 full_name: string;
46 is_private: boolean;
47 profile_pic_url: string;
48 profile_pic_id: string;
49 is_verified: boolean;
50 has_anonymous_profile_picture?: boolean;
51 can_boost_post?: boolean;
52 can_see_organic_insights?: boolean;
53 show_insights_terms?: boolean;
54 reel_auto_archive?: string;
55 is_unpublished?: boolean;
56 allowed_commenter_type?: string;
57}
58export interface HighlightsRepositoryEditReelResponseItemsItem {
59 taken_at: number;
60 pk: string;
61 id: string;
62 device_timestamp: number;
63 media_type: number;
64 code: string;
65 client_cache_key: string;
66 filter_type: number;
67 image_versions2: HighlightsRepositoryEditReelResponseImage_versions2;
68 original_width: number;
69 original_height: number;
70 user: HighlightsRepositoryEditReelResponseUser;
71 caption_is_edited: boolean;
72 caption_position: number;
73 is_reel_media: boolean;
74 timezone_offset: number;
75 boosted_status: string;
76 boost_unavailable_reason: string;
77 photo_of_you: boolean;
78 caption: null;
79 fb_user_tags?: HighlightsRepositoryEditReelResponseFb_user_tags;
80 can_viewer_save: boolean;
81 organic_tracking_token: string;
82 can_reshare: boolean;
83 can_reply: boolean;
84 is_pride_media: boolean;
85 creative_config?: HighlightsRepositoryEditReelResponseCreative_config;
86 story_is_saved_to_archive: boolean;
87 story_quizs?: HighlightsRepositoryEditReelResponseStoryQuizsItem[];
88 story_quiz_participant_infos?: HighlightsRepositoryEditReelResponseStoryQuizParticipantInfosItem[];
89 highlight_reel_ids: string[];
90 viewers: any[];
91 viewer_count: number;
92 viewer_cursor: null;
93 total_viewer_count: number;
94 multi_author_reel_names: any[];
95 supports_reel_reactions: boolean;
96 show_one_tap_fb_share_tooltip: boolean;
97 has_shared_to_fb: number;
98 is_dash_eligible?: number;
99 video_dash_manifest?: string;
100 video_codec?: string;
101 number_of_qualities?: number;
102 video_versions?: HighlightsRepositoryEditReelResponseVideoVersionsItem[];
103 has_audio?: boolean;
104 video_duration?: number;
105 imported_taken_at?: number;
106}
107export interface HighlightsRepositoryEditReelResponseImage_versions2 {
108 candidates: HighlightsRepositoryEditReelResponseCandidatesItem[];
109}
110export interface HighlightsRepositoryEditReelResponseCandidatesItem {
111 width: number;
112 height: number;
113 url: string;
114 estimated_scans_sizes: number[];
115}
116export interface HighlightsRepositoryEditReelResponseFb_user_tags {
117 in: any[];
118}
119export interface HighlightsRepositoryEditReelResponseCreative_config {
120 capture_type: string;
121 camera_facing: string;
122 should_render_try_it_on: boolean;
123}
124export interface HighlightsRepositoryEditReelResponseStoryQuizsItem {
125 x: number;
126 y: number;
127 z: number;
128 width: number;
129 height: number;
130 rotation: number;
131 is_pinned: number;
132 is_hidden: number;
133 is_sticker: number;
134 quiz_sticker: HighlightsRepositoryEditReelResponseQuiz_sticker;
135}
136export interface HighlightsRepositoryEditReelResponseQuiz_sticker {
137 id: string;
138 quiz_id: string;
139 question: string;
140 tallies: HighlightsRepositoryEditReelResponseTalliesItem[];
141 correct_answer: number;
142 viewer_can_answer: boolean;
143 finished: boolean;
144 text_color: string;
145 start_background_color: string;
146 end_background_color: string;
147}
148export interface HighlightsRepositoryEditReelResponseTalliesItem {
149 text: string;
150 count: number;
151}
152export interface HighlightsRepositoryEditReelResponseStoryQuizParticipantInfosItem {
153 quiz_id: string;
154 participants: HighlightsRepositoryEditReelResponseParticipantsItem[];
155 max_id: null;
156 more_available: boolean;
157}
158export interface HighlightsRepositoryEditReelResponseParticipantsItem {
159 user: HighlightsRepositoryEditReelResponseUser;
160 answer: number;
161 ts: number;
162}
163export interface HighlightsRepositoryEditReelResponseVideoVersionsItem {
164 type: number;
165 width: number;
166 height: number;
167 url: string;
168 id: string;
169}