nodejs-insta-private-api-mqt 1.3.90 → 1.3.92
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/dist/realtime/proto/common.proto +38 -0
- package/dist/dist/realtime/proto/direct-bundle.js +3552 -0
- package/dist/dist/realtime/proto/direct.proto +65 -0
- package/dist/dist/realtime/proto/ig-messages-bundle.js +2249 -0
- package/dist/dist/realtime/proto/ig-messages.proto +83 -0
- package/dist/dist/realtime/proto/iris-bundle.js +7108 -0
- package/dist/dist/realtime/proto/iris.proto +188 -0
- package/dist/dist/realtime/proto-parser.js +167 -86
- package/dist/dist/realtime/protocols/proto-definitions.js +18 -7
- package/package.json +1 -1
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
syntax = "proto3";
|
|
2
|
+
|
|
3
|
+
package ig.common;
|
|
4
|
+
|
|
5
|
+
// Shared message types used across Instagram
|
|
6
|
+
|
|
7
|
+
message Timestamp {
|
|
8
|
+
int64 unix_time_ms = 1;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
message UserId {
|
|
12
|
+
int64 id = 1;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
message ThreadId {
|
|
16
|
+
int64 id = 1;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
message Reaction {
|
|
20
|
+
string emoji = 1;
|
|
21
|
+
int32 count = 2;
|
|
22
|
+
int64 created_at = 3;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
message MediaAttachment {
|
|
26
|
+
int64 media_id = 1;
|
|
27
|
+
string type = 2; // image, video, carousel
|
|
28
|
+
string url = 3;
|
|
29
|
+
int32 width = 4;
|
|
30
|
+
int32 height = 5;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
message Link {
|
|
34
|
+
string url = 1;
|
|
35
|
+
string title = 2;
|
|
36
|
+
string description = 3;
|
|
37
|
+
string image_url = 4;
|
|
38
|
+
}
|