UNPKG

3.78 kBTypeScriptView Raw
1export interface HighlightsRepositoryCreateReelResponseRootObject {
2 reel: HighlightsRepositoryCreateReelResponseReel;
3 status: string;
4}
5export interface HighlightsRepositoryCreateReelResponseReel {
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: HighlightsRepositoryCreateReelResponseCover_media;
13 user: HighlightsRepositoryCreateReelResponseUser;
14 items: HighlightsRepositoryCreateReelResponseItemsItem[];
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 HighlightsRepositoryCreateReelResponseCover_media {
25 cropped_image_version: HighlightsRepositoryCreateReelResponseCropped_image_version;
26 crop_rect: null;
27 media_id: string;
28 full_image_version: HighlightsRepositoryCreateReelResponseFull_image_version;
29}
30export interface HighlightsRepositoryCreateReelResponseCropped_image_version {
31 width: number;
32 height: number;
33 url: string;
34 estimated_scans_sizes: number[];
35}
36export interface HighlightsRepositoryCreateReelResponseFull_image_version {
37 width: number;
38 height: number;
39 url: string;
40 estimated_scans_sizes: number[];
41}
42export interface HighlightsRepositoryCreateReelResponseUser {
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 HighlightsRepositoryCreateReelResponseItemsItem {
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: HighlightsRepositoryCreateReelResponseImage_versions2;
68 original_width: number;
69 original_height: number;
70 is_dash_eligible: number;
71 video_dash_manifest: string;
72 video_codec: string;
73 number_of_qualities: number;
74 video_versions: HighlightsRepositoryCreateReelResponseVideoVersionsItem[];
75 has_audio: boolean;
76 video_duration: number;
77 user: HighlightsRepositoryCreateReelResponseUser;
78 caption_is_edited: boolean;
79 caption_position: number;
80 is_reel_media: boolean;
81 timezone_offset: number;
82 boosted_status: string;
83 boost_unavailable_reason: string;
84 photo_of_you: boolean;
85 caption: null;
86 can_viewer_save: boolean;
87 organic_tracking_token: string;
88 imported_taken_at: number;
89 can_reshare: boolean;
90 can_reply: boolean;
91 is_pride_media: boolean;
92 story_is_saved_to_archive: boolean;
93 highlight_reel_ids: string[];
94 viewers: any[];
95 viewer_count: number;
96 viewer_cursor: null;
97 total_viewer_count: number;
98 multi_author_reel_names: any[];
99 supports_reel_reactions: boolean;
100 show_one_tap_fb_share_tooltip: boolean;
101 has_shared_to_fb: number;
102}
103export interface HighlightsRepositoryCreateReelResponseImage_versions2 {
104 candidates: HighlightsRepositoryCreateReelResponseCandidatesItem[];
105}
106export interface HighlightsRepositoryCreateReelResponseCandidatesItem {
107 width: number;
108 height: number;
109 url: string;
110 estimated_scans_sizes: number[];
111}
112export interface HighlightsRepositoryCreateReelResponseVideoVersionsItem {
113 type: number;
114 width: number;
115 height: number;
116 url: string;
117 id: string;
118}