tiktok-live-proto-full-types 0.0.1
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/README.md +31 -0
- package/dist/v1.d.ts +356 -0
- package/dist/v1.js +27 -0
- package/dist/v2.d.ts +4304 -0
- package/dist/v2.js +1150 -0
- package/dist/v3.d.ts +13938 -0
- package/dist/v3.js +0 -0
- package/package.json +51 -0
package/README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# tiktok-live-proto-full-types
|
|
2
|
+
|
|
3
|
+
Types-only TypeScript declarations for the **full** TikTok Webcast Protobuf
|
|
4
|
+
schema. No wire codec, no runtime, no proto field numbers — just interfaces.
|
|
5
|
+
|
|
6
|
+
Use this when you want to type-check against the full schema without pulling in
|
|
7
|
+
the private `@eulerstream/tiktok-live-proto-full` runtime package.
|
|
8
|
+
|
|
9
|
+
## Install
|
|
10
|
+
|
|
11
|
+
```sh
|
|
12
|
+
npm install --save-dev tiktok-live-proto-full-types
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Usage
|
|
16
|
+
|
|
17
|
+
```ts
|
|
18
|
+
import type { WebcastResponse } from 'tiktok-live-proto-full-types/v1';
|
|
19
|
+
import type { WebcastResponse as WebcastResponseV2 } from 'tiktok-live-proto-full-types/v2';
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Layout
|
|
23
|
+
|
|
24
|
+
- Generated by `ts-proto` with `--ts_proto_opt=onlyTypes=true` from the
|
|
25
|
+
schemas in the private `src/full/` submodule
|
|
26
|
+
- `dist/{v1,v2}.d.ts` — published declaration output
|
|
27
|
+
|
|
28
|
+
## Pairs with
|
|
29
|
+
|
|
30
|
+
- `@eulerstream/tiktok-live-proto-full` — the full runtime (private)
|
|
31
|
+
- `tiktok-live-proto` — the public slim runtime
|
package/dist/v1.d.ts
ADDED
|
@@ -0,0 +1,356 @@
|
|
|
1
|
+
//#region src/generated/v1/tiktok-schema.d.ts
|
|
2
|
+
declare const protobufPackage = "TikTok";
|
|
3
|
+
declare enum ControlAction {
|
|
4
|
+
CONTROL_ACTION_FALLBACK_UNKNOWN = 0,
|
|
5
|
+
CONTROL_ACTION_STREAM_PAUSED = 1,
|
|
6
|
+
CONTROL_ACTION_STREAM_UNPAUSED = 2,
|
|
7
|
+
CONTROL_ACTION_STREAM_ENDED = 3,
|
|
8
|
+
CONTROL_ACTION_STREAM_SUSPENDED = 4,
|
|
9
|
+
UNRECOGNIZED = -1
|
|
10
|
+
}
|
|
11
|
+
/** Data structure from im/fetch/ response */
|
|
12
|
+
interface WebcastResponse {
|
|
13
|
+
cursor: string;
|
|
14
|
+
fetchInterval: number;
|
|
15
|
+
/** ws (1) or polling (2) */
|
|
16
|
+
fetchType: number;
|
|
17
|
+
heartbeatDuration: number;
|
|
18
|
+
internalExt: string;
|
|
19
|
+
messages: Message[];
|
|
20
|
+
needAck: boolean;
|
|
21
|
+
serverTimestamp: string;
|
|
22
|
+
wsParams: WebsocketParam[];
|
|
23
|
+
wsUrl: string;
|
|
24
|
+
}
|
|
25
|
+
interface Message {
|
|
26
|
+
binary: Uint8Array;
|
|
27
|
+
type: string;
|
|
28
|
+
}
|
|
29
|
+
interface WebsocketParam {
|
|
30
|
+
name: string;
|
|
31
|
+
value: string;
|
|
32
|
+
}
|
|
33
|
+
/** Message types depending on Message.tyoe */
|
|
34
|
+
interface WebcastControlMessage {
|
|
35
|
+
action: ControlAction;
|
|
36
|
+
}
|
|
37
|
+
/** Statistics like viewer count */
|
|
38
|
+
interface WebcastRoomUserSeqMessage {
|
|
39
|
+
topViewers: TopUser[];
|
|
40
|
+
viewerCount: number;
|
|
41
|
+
}
|
|
42
|
+
interface TopUser {
|
|
43
|
+
coinCount: string;
|
|
44
|
+
user: User | undefined;
|
|
45
|
+
}
|
|
46
|
+
interface ImageModel {
|
|
47
|
+
avgColor: string;
|
|
48
|
+
content: ImageModel_Content | undefined;
|
|
49
|
+
height: number;
|
|
50
|
+
imageType: number;
|
|
51
|
+
isAnimated: boolean;
|
|
52
|
+
mUri: string;
|
|
53
|
+
mUrls: string[];
|
|
54
|
+
schema: string;
|
|
55
|
+
width: number;
|
|
56
|
+
}
|
|
57
|
+
interface ImageModel_Content {
|
|
58
|
+
fontColor: string;
|
|
59
|
+
level: string;
|
|
60
|
+
name: string;
|
|
61
|
+
}
|
|
62
|
+
interface WebcastChatMessage {
|
|
63
|
+
atUser: User | undefined;
|
|
64
|
+
background: ImageModel | undefined;
|
|
65
|
+
backgroundImageV2: ImageModel | undefined;
|
|
66
|
+
comment: string;
|
|
67
|
+
commentQualityScores: WebcastChatMessage_CommentQualityScore[];
|
|
68
|
+
commentTag: WebcastChatMessage_CommentTag[];
|
|
69
|
+
communityflaggedStatus: number;
|
|
70
|
+
contentLanguage: string;
|
|
71
|
+
ecStreamerKey: string;
|
|
72
|
+
emotes: WebcastSubEmote[];
|
|
73
|
+
event: WebcastMessageEvent | undefined;
|
|
74
|
+
fullScreenTextColor: string;
|
|
75
|
+
giftImage: ImageModel | undefined;
|
|
76
|
+
inputType: number;
|
|
77
|
+
quickChatScene: number;
|
|
78
|
+
screenTime: string;
|
|
79
|
+
signature: string;
|
|
80
|
+
signatureVersion: string;
|
|
81
|
+
user: User | undefined;
|
|
82
|
+
userIdentity: WebcastChatMessage_UserIdentity | undefined;
|
|
83
|
+
visibleToSender: boolean;
|
|
84
|
+
}
|
|
85
|
+
declare enum WebcastChatMessage_CommentTag {
|
|
86
|
+
COMMENT_TAG_NORMAL = 0,
|
|
87
|
+
COMMENT_TAG_CANDIDATE = 1,
|
|
88
|
+
COMMENT_TAG_OVERAGE = 2,
|
|
89
|
+
UNRECOGNIZED = -1
|
|
90
|
+
}
|
|
91
|
+
interface WebcastChatMessage_UserIdentity {
|
|
92
|
+
isAnchor: boolean;
|
|
93
|
+
isFollowerOfAnchor: boolean;
|
|
94
|
+
isGiftGiverOfAnchor: boolean;
|
|
95
|
+
isModeratorOfAnchor: boolean;
|
|
96
|
+
isMutualFollowingWithAnchor: boolean;
|
|
97
|
+
isSubscriberOfAnchor: boolean;
|
|
98
|
+
}
|
|
99
|
+
interface WebcastChatMessage_CommentQualityScore {
|
|
100
|
+
score: string;
|
|
101
|
+
version: string;
|
|
102
|
+
}
|
|
103
|
+
interface EmoteUploadInfo {
|
|
104
|
+
emoteUploadSource?: EmoteUploadInfo_UserEmoteUploadSource | undefined;
|
|
105
|
+
userId: string;
|
|
106
|
+
userIdStr: string;
|
|
107
|
+
userInfo: User | undefined;
|
|
108
|
+
}
|
|
109
|
+
declare enum EmoteUploadInfo_UserEmoteUploadSource {
|
|
110
|
+
USER_EMOTE_UPLOAD_SOURCE_EMOTE_UPLOAD_SOURCE_ANCHOR = 0,
|
|
111
|
+
USER_EMOTE_UPLOAD_SOURCE_EMOTE_UPLOAD_SOURCE_SUBSCRIBER = 1,
|
|
112
|
+
USER_EMOTE_UPLOAD_SOURCE_EMOTE_UPLOAD_SOURCE_MODERATOR = 2,
|
|
113
|
+
UNRECOGNIZED = -1
|
|
114
|
+
}
|
|
115
|
+
/** Chat Emotes (Subscriber) */
|
|
116
|
+
interface WebcastEmoteChatMessage {
|
|
117
|
+
emote: EmoteDetails | undefined;
|
|
118
|
+
user: User | undefined;
|
|
119
|
+
}
|
|
120
|
+
interface WebcastSubEmote {
|
|
121
|
+
emote: EmoteDetails | undefined;
|
|
122
|
+
/** starting at 0, you insert the emote itself into the comment at that place */
|
|
123
|
+
placeInComment: number;
|
|
124
|
+
}
|
|
125
|
+
interface WebcastMemberMessage {
|
|
126
|
+
actionId: number;
|
|
127
|
+
event: WebcastMessageEvent | undefined;
|
|
128
|
+
user: User | undefined;
|
|
129
|
+
}
|
|
130
|
+
interface WebcastGiftMessage {
|
|
131
|
+
event: WebcastMessageEvent | undefined;
|
|
132
|
+
giftDetails: WebcastGiftMessageGiftDetails | undefined;
|
|
133
|
+
giftExtra: WebcastGiftMessageGiftExtra | undefined;
|
|
134
|
+
giftId: number;
|
|
135
|
+
groupId: string;
|
|
136
|
+
monitorExtra: string;
|
|
137
|
+
repeatCount: number;
|
|
138
|
+
repeatEnd: number;
|
|
139
|
+
user: User | undefined;
|
|
140
|
+
}
|
|
141
|
+
interface WebcastGiftMessageGiftDetails {
|
|
142
|
+
describe: string;
|
|
143
|
+
diamondCount: number;
|
|
144
|
+
giftImage: WebcastGiftMessageGiftImage | undefined;
|
|
145
|
+
giftName: string;
|
|
146
|
+
giftType: number;
|
|
147
|
+
}
|
|
148
|
+
/** Taken from https://github.com/Davincible/gotiktoklive/blob/da4630622bc586629a53faae64e8c53509af29de/proto/tiktok.proto#L57 */
|
|
149
|
+
interface WebcastGiftMessageGiftExtra {
|
|
150
|
+
receiverUserId: string;
|
|
151
|
+
timestamp: string;
|
|
152
|
+
}
|
|
153
|
+
interface WebcastGiftMessageGiftImage {
|
|
154
|
+
giftPictureUrl: string;
|
|
155
|
+
}
|
|
156
|
+
/** Battle start */
|
|
157
|
+
interface WebcastLinkMicBattle {
|
|
158
|
+
battleUsers: WebcastLinkMicBattleItems[];
|
|
159
|
+
}
|
|
160
|
+
interface WebcastLinkMicBattleItems {
|
|
161
|
+
battleGroup: WebcastLinkMicBattleGroup | undefined;
|
|
162
|
+
}
|
|
163
|
+
interface WebcastLinkMicBattleGroup {
|
|
164
|
+
user: LinkUser | undefined;
|
|
165
|
+
}
|
|
166
|
+
/** Battle status */
|
|
167
|
+
interface WebcastLinkMicArmies {
|
|
168
|
+
battleItems: WebcastLinkMicArmiesItems[];
|
|
169
|
+
battleStatus: number;
|
|
170
|
+
}
|
|
171
|
+
interface WebcastLinkMicArmiesItems {
|
|
172
|
+
battleGroups: WebcastLinkMicArmiesGroup[];
|
|
173
|
+
hostUserId: string;
|
|
174
|
+
}
|
|
175
|
+
interface WebcastLinkMicArmiesGroup {
|
|
176
|
+
points: number;
|
|
177
|
+
users: User[];
|
|
178
|
+
}
|
|
179
|
+
/** Follow & share event */
|
|
180
|
+
interface WebcastSocialMessage {
|
|
181
|
+
event: WebcastMessageEvent | undefined;
|
|
182
|
+
user: User | undefined;
|
|
183
|
+
}
|
|
184
|
+
/** Like event (is only sent from time to time, not with every like) */
|
|
185
|
+
interface WebcastLikeMessage {
|
|
186
|
+
event: WebcastMessageEvent | undefined;
|
|
187
|
+
likeCount: number;
|
|
188
|
+
totalLikeCount: number;
|
|
189
|
+
user: User | undefined;
|
|
190
|
+
}
|
|
191
|
+
/** New question event */
|
|
192
|
+
interface WebcastQuestionNewMessage {
|
|
193
|
+
questionDetails: QuestionDetails | undefined;
|
|
194
|
+
}
|
|
195
|
+
interface QuestionDetails {
|
|
196
|
+
questionText: string;
|
|
197
|
+
user: User | undefined;
|
|
198
|
+
}
|
|
199
|
+
interface WebcastMessageEvent {
|
|
200
|
+
createTime: string;
|
|
201
|
+
eventDetails: WebcastMessageEventDetails | undefined;
|
|
202
|
+
msgId: string;
|
|
203
|
+
}
|
|
204
|
+
/** Contains UI information */
|
|
205
|
+
interface WebcastMessageEventDetails {
|
|
206
|
+
displayType: string;
|
|
207
|
+
label: string;
|
|
208
|
+
}
|
|
209
|
+
/** Source: Co-opted https://github.com/zerodytrash/TikTok-Livestream-Chat-Connector/issues/19#issuecomment-1074150342 */
|
|
210
|
+
interface WebcastLiveIntroMessage {
|
|
211
|
+
description: string;
|
|
212
|
+
id: string;
|
|
213
|
+
user: User | undefined;
|
|
214
|
+
}
|
|
215
|
+
interface SystemMessage {
|
|
216
|
+
description: string;
|
|
217
|
+
}
|
|
218
|
+
interface WebcastInRoomBannerMessage {
|
|
219
|
+
data: string;
|
|
220
|
+
}
|
|
221
|
+
interface RankItem {
|
|
222
|
+
colour: string;
|
|
223
|
+
id: string;
|
|
224
|
+
}
|
|
225
|
+
interface WeeklyRanking {
|
|
226
|
+
label: string;
|
|
227
|
+
rank: RankItem | undefined;
|
|
228
|
+
type: string;
|
|
229
|
+
}
|
|
230
|
+
interface RankContainer {
|
|
231
|
+
rankings: WeeklyRanking | undefined;
|
|
232
|
+
}
|
|
233
|
+
interface WebcastHourlyRankMessage {
|
|
234
|
+
data: RankContainer | undefined;
|
|
235
|
+
}
|
|
236
|
+
interface EmoteDetails {
|
|
237
|
+
emoteId: string;
|
|
238
|
+
image: EmoteImage | undefined;
|
|
239
|
+
}
|
|
240
|
+
interface EmoteImage {
|
|
241
|
+
imageUrl: string;
|
|
242
|
+
}
|
|
243
|
+
/**
|
|
244
|
+
* Envelope (treasure boxes)
|
|
245
|
+
* Taken from https://github.com/ThanoFish/TikTok-Live-Connector/blob/9b215b96792adfddfb638344b152fa9efa581b4c/src/proto/tiktokSchema.proto
|
|
246
|
+
*/
|
|
247
|
+
interface WebcastEnvelopeMessage {
|
|
248
|
+
treasureBoxData: TreasureBoxData | undefined;
|
|
249
|
+
treasureBoxUser: TreasureBoxUser | undefined;
|
|
250
|
+
}
|
|
251
|
+
interface TreasureBoxUser {
|
|
252
|
+
user2: TreasureBoxUser2 | undefined;
|
|
253
|
+
}
|
|
254
|
+
interface TreasureBoxUser2 {
|
|
255
|
+
user3: TreasureBoxUser3[];
|
|
256
|
+
}
|
|
257
|
+
interface TreasureBoxUser3 {
|
|
258
|
+
user4: TreasureBoxUser4 | undefined;
|
|
259
|
+
}
|
|
260
|
+
interface TreasureBoxUser4 {
|
|
261
|
+
user: User | undefined;
|
|
262
|
+
}
|
|
263
|
+
interface TreasureBoxData {
|
|
264
|
+
canOpen: number;
|
|
265
|
+
coins: number;
|
|
266
|
+
timestamp: string;
|
|
267
|
+
}
|
|
268
|
+
/** New Subscriber message */
|
|
269
|
+
interface WebcastSubNotifyMessage {
|
|
270
|
+
event: WebcastMessageEvent | undefined;
|
|
271
|
+
exhibitionType: number;
|
|
272
|
+
oldSubscribeStatus: number;
|
|
273
|
+
subMonth: number;
|
|
274
|
+
subscribeType: number;
|
|
275
|
+
subscribingStatus: number;
|
|
276
|
+
user: User | undefined;
|
|
277
|
+
}
|
|
278
|
+
interface User {
|
|
279
|
+
badges: UserBadgesAttributes[];
|
|
280
|
+
bioDescription: string;
|
|
281
|
+
createTime: string;
|
|
282
|
+
followInfo: FollowInfo | undefined;
|
|
283
|
+
nickname: string;
|
|
284
|
+
profilePicture: ProfilePicture | undefined;
|
|
285
|
+
secUid: string;
|
|
286
|
+
uniqueId: string;
|
|
287
|
+
userId: string;
|
|
288
|
+
}
|
|
289
|
+
interface FollowInfo {
|
|
290
|
+
followerCount: number;
|
|
291
|
+
followingCount: number;
|
|
292
|
+
followStatus: number;
|
|
293
|
+
pushStatus: number;
|
|
294
|
+
}
|
|
295
|
+
interface LinkUser {
|
|
296
|
+
nickname: string;
|
|
297
|
+
profilePicture: ProfilePicture | undefined;
|
|
298
|
+
uniqueId: string;
|
|
299
|
+
userId: string;
|
|
300
|
+
}
|
|
301
|
+
interface ProfilePicture {
|
|
302
|
+
urls: string[];
|
|
303
|
+
}
|
|
304
|
+
interface UserBadgesAttributes {
|
|
305
|
+
badges: UserBadge[];
|
|
306
|
+
badgeSceneType: number;
|
|
307
|
+
imageBadges: UserImageBadge[];
|
|
308
|
+
privilegeLogExtra: PrivilegeLogExtra | undefined;
|
|
309
|
+
}
|
|
310
|
+
interface PrivilegeLogExtra {
|
|
311
|
+
level: string;
|
|
312
|
+
privilegeId: string;
|
|
313
|
+
}
|
|
314
|
+
interface UserBadge {
|
|
315
|
+
name: string;
|
|
316
|
+
type: string;
|
|
317
|
+
}
|
|
318
|
+
interface UserImageBadge {
|
|
319
|
+
displayType: number;
|
|
320
|
+
image: UserImageBadgeImage | undefined;
|
|
321
|
+
}
|
|
322
|
+
interface UserImageBadgeImage {
|
|
323
|
+
url: string;
|
|
324
|
+
}
|
|
325
|
+
/** Websocket incoming message structure */
|
|
326
|
+
interface WebcastWebsocketMessage {
|
|
327
|
+
binary: Uint8Array;
|
|
328
|
+
id: string;
|
|
329
|
+
type: string;
|
|
330
|
+
}
|
|
331
|
+
/** Websocket acknowledgment message */
|
|
332
|
+
interface WebcastWebsocketAck {
|
|
333
|
+
id: string;
|
|
334
|
+
type: string;
|
|
335
|
+
}
|
|
336
|
+
interface WebcastBarrageMessage {
|
|
337
|
+
content: WebcastBarrageMessage_Text | undefined;
|
|
338
|
+
event: WebcastMessageEvent | undefined;
|
|
339
|
+
msgType: number;
|
|
340
|
+
}
|
|
341
|
+
interface WebcastBarrageMessage_Text {
|
|
342
|
+
defaultPattern: string;
|
|
343
|
+
key: string;
|
|
344
|
+
pieces: WebcastBarrageMessage_TextPiece[];
|
|
345
|
+
}
|
|
346
|
+
interface WebcastBarrageMessage_TextPiece {
|
|
347
|
+
stringValue: string;
|
|
348
|
+
type: number;
|
|
349
|
+
userValue: WebcastBarrageMessage_TextPieceUser | undefined;
|
|
350
|
+
}
|
|
351
|
+
interface WebcastBarrageMessage_TextPieceUser {
|
|
352
|
+
user: User | undefined;
|
|
353
|
+
withColon: boolean;
|
|
354
|
+
}
|
|
355
|
+
//#endregion
|
|
356
|
+
export { ControlAction, EmoteDetails, EmoteImage, EmoteUploadInfo, EmoteUploadInfo_UserEmoteUploadSource, FollowInfo, ImageModel, ImageModel_Content, LinkUser, Message, PrivilegeLogExtra, ProfilePicture, QuestionDetails, RankContainer, RankItem, SystemMessage, TopUser, TreasureBoxData, TreasureBoxUser, TreasureBoxUser2, TreasureBoxUser3, TreasureBoxUser4, User, UserBadge, UserBadgesAttributes, UserImageBadge, UserImageBadgeImage, WebcastBarrageMessage, WebcastBarrageMessage_Text, WebcastBarrageMessage_TextPiece, WebcastBarrageMessage_TextPieceUser, WebcastChatMessage, WebcastChatMessage_CommentQualityScore, WebcastChatMessage_CommentTag, WebcastChatMessage_UserIdentity, WebcastControlMessage, WebcastEmoteChatMessage, WebcastEnvelopeMessage, WebcastGiftMessage, WebcastGiftMessageGiftDetails, WebcastGiftMessageGiftExtra, WebcastGiftMessageGiftImage, WebcastHourlyRankMessage, WebcastInRoomBannerMessage, WebcastLikeMessage, WebcastLinkMicArmies, WebcastLinkMicArmiesGroup, WebcastLinkMicArmiesItems, WebcastLinkMicBattle, WebcastLinkMicBattleGroup, WebcastLinkMicBattleItems, WebcastLiveIntroMessage, WebcastMemberMessage, WebcastMessageEvent, WebcastMessageEventDetails, WebcastQuestionNewMessage, WebcastResponse, WebcastRoomUserSeqMessage, WebcastSocialMessage, WebcastSubEmote, WebcastSubNotifyMessage, WebcastWebsocketAck, WebcastWebsocketMessage, WebsocketParam, WeeklyRanking, protobufPackage };
|
package/dist/v1.js
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
//#region src/generated/v1/tiktok-schema.ts
|
|
2
|
+
const protobufPackage = "TikTok";
|
|
3
|
+
let ControlAction = /* @__PURE__ */ function(ControlAction) {
|
|
4
|
+
ControlAction[ControlAction["CONTROL_ACTION_FALLBACK_UNKNOWN"] = 0] = "CONTROL_ACTION_FALLBACK_UNKNOWN";
|
|
5
|
+
ControlAction[ControlAction["CONTROL_ACTION_STREAM_PAUSED"] = 1] = "CONTROL_ACTION_STREAM_PAUSED";
|
|
6
|
+
ControlAction[ControlAction["CONTROL_ACTION_STREAM_UNPAUSED"] = 2] = "CONTROL_ACTION_STREAM_UNPAUSED";
|
|
7
|
+
ControlAction[ControlAction["CONTROL_ACTION_STREAM_ENDED"] = 3] = "CONTROL_ACTION_STREAM_ENDED";
|
|
8
|
+
ControlAction[ControlAction["CONTROL_ACTION_STREAM_SUSPENDED"] = 4] = "CONTROL_ACTION_STREAM_SUSPENDED";
|
|
9
|
+
ControlAction[ControlAction["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
|
|
10
|
+
return ControlAction;
|
|
11
|
+
}({});
|
|
12
|
+
let WebcastChatMessage_CommentTag = /* @__PURE__ */ function(WebcastChatMessage_CommentTag) {
|
|
13
|
+
WebcastChatMessage_CommentTag[WebcastChatMessage_CommentTag["COMMENT_TAG_NORMAL"] = 0] = "COMMENT_TAG_NORMAL";
|
|
14
|
+
WebcastChatMessage_CommentTag[WebcastChatMessage_CommentTag["COMMENT_TAG_CANDIDATE"] = 1] = "COMMENT_TAG_CANDIDATE";
|
|
15
|
+
WebcastChatMessage_CommentTag[WebcastChatMessage_CommentTag["COMMENT_TAG_OVERAGE"] = 2] = "COMMENT_TAG_OVERAGE";
|
|
16
|
+
WebcastChatMessage_CommentTag[WebcastChatMessage_CommentTag["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
|
|
17
|
+
return WebcastChatMessage_CommentTag;
|
|
18
|
+
}({});
|
|
19
|
+
let EmoteUploadInfo_UserEmoteUploadSource = /* @__PURE__ */ function(EmoteUploadInfo_UserEmoteUploadSource) {
|
|
20
|
+
EmoteUploadInfo_UserEmoteUploadSource[EmoteUploadInfo_UserEmoteUploadSource["USER_EMOTE_UPLOAD_SOURCE_EMOTE_UPLOAD_SOURCE_ANCHOR"] = 0] = "USER_EMOTE_UPLOAD_SOURCE_EMOTE_UPLOAD_SOURCE_ANCHOR";
|
|
21
|
+
EmoteUploadInfo_UserEmoteUploadSource[EmoteUploadInfo_UserEmoteUploadSource["USER_EMOTE_UPLOAD_SOURCE_EMOTE_UPLOAD_SOURCE_SUBSCRIBER"] = 1] = "USER_EMOTE_UPLOAD_SOURCE_EMOTE_UPLOAD_SOURCE_SUBSCRIBER";
|
|
22
|
+
EmoteUploadInfo_UserEmoteUploadSource[EmoteUploadInfo_UserEmoteUploadSource["USER_EMOTE_UPLOAD_SOURCE_EMOTE_UPLOAD_SOURCE_MODERATOR"] = 2] = "USER_EMOTE_UPLOAD_SOURCE_EMOTE_UPLOAD_SOURCE_MODERATOR";
|
|
23
|
+
EmoteUploadInfo_UserEmoteUploadSource[EmoteUploadInfo_UserEmoteUploadSource["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
|
|
24
|
+
return EmoteUploadInfo_UserEmoteUploadSource;
|
|
25
|
+
}({});
|
|
26
|
+
//#endregion
|
|
27
|
+
export { ControlAction, EmoteUploadInfo_UserEmoteUploadSource, WebcastChatMessage_CommentTag, protobufPackage };
|