First release
This commit is contained in:
64
src/lib/types.js
Normal file
64
src/lib/types.js
Normal file
@@ -0,0 +1,64 @@
|
||||
/**
|
||||
* @typedef GraphEdgeCount
|
||||
* @property {number} count
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef GraphEdgesText
|
||||
* @type {{edges: {node: {text: string}}[]}}
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef PagedEdges<T>
|
||||
* @property {number} count
|
||||
* @property {{has_next_page: boolean, end_cursor: string}} page_info
|
||||
* @property {{node: T}[]} edges
|
||||
* @template T
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef GraphUser
|
||||
* @property {string} biography
|
||||
* @property {string} external_url
|
||||
* @property {GraphEdgeCount} edge_followed_by
|
||||
* @property {GraphEdgeCount} edge_follow
|
||||
* @property {string} full_name
|
||||
* @property {string} id
|
||||
* @property {boolean} is_business_account
|
||||
* @property {boolean} is_joined_recently
|
||||
* @property {boolean} is_verified
|
||||
* @property {string} profile_pic_url
|
||||
* @property {string} profile_pic_url_hd
|
||||
* @property {string} username
|
||||
*
|
||||
* @property {any} edge_felix_video_timeline
|
||||
* @property {PagedEdges<GraphImage>} edge_owner_to_timeline_media
|
||||
* @property {any} edge_saved_media
|
||||
* @property {any} edge_media_collections
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef Thumbnail
|
||||
* @property {string} src
|
||||
* @property {number} config_width
|
||||
* @property {number} config_height
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef GraphImage
|
||||
* @property {string} id
|
||||
* @property {GraphEdgesText} edge_media_to_caption
|
||||
* @property {string} shortcode
|
||||
* @property {GraphEdgeCount} edge_media_to_comment
|
||||
* @property {number} taken_at_timestamp No milliseconds
|
||||
* @property {GraphEdgeCount} edge_liked_by
|
||||
* @property {GraphEdgeCount} edge_media_preview_like
|
||||
* @property {{width: number, height: number}} dimensions
|
||||
* @property {string} display_url
|
||||
* @property {{id: string, username: string}} owner
|
||||
* @property {string} thumbnail_src
|
||||
* @property {Thumbnail[]} thumbnail_resources
|
||||
* @property {string} accessibility_caption
|
||||
*/
|
||||
|
||||
module.exports = {}
|
||||
Reference in New Issue
Block a user