aboutsummaryrefslogtreecommitdiffstats
path: root/modules/database.d.ts
blob: fb19a39282452392a37971817c4d29c1dd8b8fb9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
/**
 * Video data
 */

export type VideoFile = {
  name: string;
  size: number;
  url?: string;
};

export type VideoMetadata = {
  video_id: string;
  channel_name: string;
  channel_id: string;
  upload_date: string;
  title: string;
  description: string;
  duration: number;
  width: number;
  height: number;
  fps: number;
  format_id: string;
  view_count: number;
  like_count: number;
  dislike_count: number;
  archived_timestamp: string;
  files: VideoFile[];
  drive_base: string;
  timestamps?: {
    actualStartTime?: string;
    publishedAt?: string;
    scheduledStartTime?: string;
    actualEndTime?: string;
    discoveredUnavailable?: string;
  };
};

export type ElasticSearchDocument<T> = {
  _index: string;
  _type: string;
  _id: string;
  _score: string;
  _source: T;
};

export type ElasticSearchResult<T> = {
  took: number;
  timed_out: boolean;
  _shards: {
    total: number;
    successful: number;
    skipped: number;
    failed: number;
  };
  hits: {
    total: {
      value: number;
      relation: "eq" | "gt" | "lt";
    };
    max_score: number;
    hits: Array<ElasticSearchDocument<T>>;
  };
};

/**
 * Chat replay
 */

type ChatMessageEmoteImage = {
  url: string;
  id: string;
  width?: number;
  height?: number;
};

type ChatMessageEmote = {
  id: string;
  name: string;
  shortcuts: string[];
  search_terms: string[];
  images: ChatMessageEmoteImage[];
  is_custom_emoji: boolean;
};

type ChatMessageBase = {
  time_in_seconds: number;
  action_type: "add_chat_item" | "add_live_chat_ticker_item" | string;
  message_id: string;
  timestamp: number;
  time_text: string;
  message: string;
  emotes?: ChatMessageEmote[];
};

type ChatMessageImage = {
  url: string;
  id: string;
  width?: number;
  height?: number;
};

type ChatMessageAuthorBadge = {
  title: string;
  icons: ChatMessageImage[];
};

type ChatMessageAuthor = {
  name: string;
  id: string;
  images: ChatMessageImage[];
  badges?: ChatMessageAuthorBadge[];
};

type ChatMessageMoney = {
  text: string;
  amount: number;
  currency: string;
  currency_symbol: string;
};

type ChatViewerEngagementMessage = ChatMessageBase & {
  icon: "YOUTUBE_ROUND";
  message_type: "viewer_engagement_message";
};

type ChatTextMessage = ChatMessageBase & {
  message_type: "text_message";
  author: ChatMessageAuthor;
};

type ChatMembershipItem = ChatMessageBase & {
  message_type: "membership_item";
  author: ChatMessageAuthor;
};

type ChatPaidMessage = ChatMessageBase & {
  message_type: "paid_message";
  author: ChatMessageAuthor & {
    name_text_colour?: string;
  };
  money: ChatMessageMoney;
  timestamp_colour: string;
  body_background_colour: string;
  header_text_colour: string;
  header_background_colour: string;
  body_text_colour: string;
};

export type ChatMessage =
  | ChatViewerEngagementMessage
  | ChatTextMessage
  | ChatMembershipItem
  | ChatPaidMessage;

export const ChatMessageTypes = [
  "paid_message",
  "membership_item",
  "text_message",
  "viewer_engagement_message",
] as const;
export type ChatMessageType = typeof ChatMessageTypes[number];

/**
 * Search logs
 */

export type ElasticSearchLog = {
  timestamp: string;
  query: string;
};
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage