diff --git a/src/lib/constants.js b/src/lib/constants.js index f7c4e9c..8cc5737 100644 --- a/src/lib/constants.js +++ b/src/lib/constants.js @@ -203,7 +203,9 @@ let constants = { timeline_query_hash: "e769aa130647d2354c40ea6a439bfc08", timeline_query_hash_2: "42323d64886122307be10013ad2dcc44", // https://github.com/rarcega/instagram-scraper/blob/dc022081dbefc81500c5f70cce5c70cfd2816e3c/instagram_scraper/constants.py#L30 shortcode_query_hash: "2b0673e0dc4580674a88d426fe00ea90", + igtv_query_hash: "bc78b344a68ed16dd5d7f264681c4c76", timeline_fetch_first: 12, + igtv_fetch_first: 12, username_regex: "[\\w.]*[\\w]", shortcode_regex: "[\\w-]+", hashtag_regex: "[^ \\n`~!@#\\$%^&*()\\-=+[\\]{};:\"',<.>/?\\\\]+", @@ -252,6 +254,10 @@ let constants = { } }, + secrets: { + push_webhook_token: null + }, + additional_routes: [], database_version: 7 diff --git a/src/lib/types.js b/src/lib/types.js index 0a3b5e3..255b85f 100644 --- a/src/lib/types.js +++ b/src/lib/types.js @@ -99,6 +99,7 @@ * @property {boolean} [viewer_has_saved_to_collection] * @property {boolean} [viewer_in_photo_of_you] * @property {boolean} [viewer_can_reshare] + * @property {string} [title] igtv only * N3 * @property {boolean} [caption_is_edited] * @property {boolean} [has_ranked_comments] @@ -244,6 +245,7 @@ * @property {boolean} viewer_can_reshare * @property {string} thumbnail_src * @property {DisplayResource[]} thumbnail_resources + * @property {string} [title] igtv only */ /**