tiktok-live-proto 0.2.2 → 0.2.4
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/LICENSE +720 -0
- package/dist/node/v3.d.ts +1278 -564
- package/dist/node/v3.js +13880 -9378
- package/dist/web/v3.d.ts +1278 -564
- package/dist/web/v3.js +13880 -9378
- package/package.json +2 -2
package/dist/node/v3.d.ts
CHANGED
|
@@ -17,9 +17,9 @@ interface ImageModel {
|
|
|
17
17
|
content: Content | undefined;
|
|
18
18
|
isAnimated: boolean;
|
|
19
19
|
}
|
|
20
|
-
declare const Content: MessageFns$
|
|
21
|
-
declare const ImageModel: MessageFns$
|
|
22
|
-
interface MessageFns$
|
|
20
|
+
declare const Content: MessageFns$53<Content>;
|
|
21
|
+
declare const ImageModel: MessageFns$53<ImageModel>;
|
|
22
|
+
interface MessageFns$53<T> {
|
|
23
23
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
24
24
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
25
25
|
}
|
|
@@ -1036,16 +1036,16 @@ interface UserIdentity {
|
|
|
1036
1036
|
isModeratorOfAnchor: boolean;
|
|
1037
1037
|
isAnchor: boolean;
|
|
1038
1038
|
}
|
|
1039
|
-
declare const DiffInfo: MessageFns$
|
|
1040
|
-
declare const EffectStruct: MessageFns$
|
|
1041
|
-
declare const EventUserInfo: MessageFns$
|
|
1042
|
-
declare const MsgFilter: MessageFns$
|
|
1043
|
-
declare const PaidEventPreview: MessageFns$
|
|
1044
|
-
declare const SubSplitStatus: MessageFns$
|
|
1045
|
-
declare const TemplateEffectExtra: MessageFns$
|
|
1046
|
-
declare const UrlDataStruct: MessageFns$
|
|
1047
|
-
declare const UserIdentity: MessageFns$
|
|
1048
|
-
interface MessageFns$
|
|
1039
|
+
declare const DiffInfo: MessageFns$52<DiffInfo>;
|
|
1040
|
+
declare const EffectStruct: MessageFns$52<EffectStruct>;
|
|
1041
|
+
declare const EventUserInfo: MessageFns$52<EventUserInfo>;
|
|
1042
|
+
declare const MsgFilter: MessageFns$52<MsgFilter>;
|
|
1043
|
+
declare const PaidEventPreview: MessageFns$52<PaidEventPreview>;
|
|
1044
|
+
declare const SubSplitStatus: MessageFns$52<SubSplitStatus>;
|
|
1045
|
+
declare const TemplateEffectExtra: MessageFns$52<TemplateEffectExtra>;
|
|
1046
|
+
declare const UrlDataStruct: MessageFns$52<UrlDataStruct>;
|
|
1047
|
+
declare const UserIdentity: MessageFns$52<UserIdentity>;
|
|
1048
|
+
interface MessageFns$52<T> {
|
|
1049
1049
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
1050
1050
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
1051
1051
|
}
|
|
@@ -1100,6 +1100,7 @@ interface SubPinCard {
|
|
|
1100
1100
|
extraInfo: SubPinCardExtra | undefined;
|
|
1101
1101
|
highlightTextNum: string;
|
|
1102
1102
|
icons: ImageModel[];
|
|
1103
|
+
pinSource: number;
|
|
1103
1104
|
}
|
|
1104
1105
|
interface SubPinCardExtra {
|
|
1105
1106
|
sovInfo: SOVPinCardInfo | undefined;
|
|
@@ -1141,142 +1142,19 @@ interface TimerDetailAuditInfo {
|
|
|
1141
1142
|
violationId: string;
|
|
1142
1143
|
taskType: TimerDetailAuditTaskType;
|
|
1143
1144
|
}
|
|
1144
|
-
declare const EmoteModelAuditInfo: MessageFns$
|
|
1145
|
-
declare const SOVBriefInfo: MessageFns$
|
|
1146
|
-
declare const SOVMaskInfo: MessageFns$
|
|
1147
|
-
declare const SOVPinCardInfo: MessageFns$
|
|
1148
|
-
declare const SubGoalPinCard: MessageFns$
|
|
1149
|
-
declare const SubOnlyVideosBriefInfo: MessageFns$
|
|
1150
|
-
declare const SubPinCard: MessageFns$
|
|
1151
|
-
declare const SubPinCardExtra: MessageFns$
|
|
1152
|
-
declare const SubPinCardText: MessageFns$
|
|
1153
|
-
declare const Text$1: MessageFns$
|
|
1154
|
-
declare const TimerDetail: MessageFns$
|
|
1155
|
-
declare const TimerDetailAuditInfo: MessageFns$
|
|
1156
|
-
interface MessageFns$
|
|
1157
|
-
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
1158
|
-
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
1159
|
-
}
|
|
1160
|
-
//#endregion
|
|
1161
|
-
//#region src/generated/node/v3/webcast/shared/messages.d.ts
|
|
1162
|
-
interface AuthenticationInfo {
|
|
1163
|
-
customVerify: string;
|
|
1164
|
-
enterpriseVerifyReason: string;
|
|
1165
|
-
authenticationBadge: ImageModel | undefined;
|
|
1166
|
-
}
|
|
1167
|
-
interface ShopLabelImage {
|
|
1168
|
-
height: number;
|
|
1169
|
-
width: number;
|
|
1170
|
-
minetype: string;
|
|
1171
|
-
thumbUri: string;
|
|
1172
|
-
thumbUriList: string[];
|
|
1173
|
-
uri: string;
|
|
1174
|
-
urlList: string[];
|
|
1175
|
-
color: string;
|
|
1176
|
-
}
|
|
1177
|
-
interface UserInfo$1 {
|
|
1178
|
-
userId: string;
|
|
1179
|
-
nickName: string;
|
|
1180
|
-
avatarThumb: ImageModel | undefined;
|
|
1181
|
-
}
|
|
1182
|
-
declare const AuthenticationInfo: MessageFns$49<AuthenticationInfo>;
|
|
1183
|
-
declare const ShopLabelImage: MessageFns$49<ShopLabelImage>;
|
|
1184
|
-
declare const UserInfo$1: MessageFns$49<UserInfo$1>;
|
|
1185
|
-
interface MessageFns$49<T> {
|
|
1186
|
-
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
1187
|
-
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
1188
|
-
}
|
|
1189
|
-
//#endregion
|
|
1190
|
-
//#region src/generated/node/v3/webcast/message_proto.d.ts
|
|
1191
|
-
interface DisplayControl {
|
|
1192
|
-
priority: number;
|
|
1193
|
-
duration: string;
|
|
1194
|
-
targetGroupShowRst: {
|
|
1195
|
-
[key: number]: ShowResult;
|
|
1196
|
-
};
|
|
1197
|
-
horizontalTriggerType: DisplayControlHorizontalOnclickTriggerType;
|
|
1198
|
-
}
|
|
1199
|
-
interface DisplayControl_TargetGroupShowRstEntry {
|
|
1200
|
-
key: number;
|
|
1201
|
-
value: ShowResult | undefined;
|
|
1202
|
-
}
|
|
1203
|
-
interface EcommerceEntrance {
|
|
1204
|
-
entranceType: UserEcommerceEntranceEntranceType;
|
|
1205
|
-
creatorType: UserEcommerceEntranceCreatorType;
|
|
1206
|
-
schema: string;
|
|
1207
|
-
shopEntranceInfo: ShopEntranceInfo | undefined;
|
|
1208
|
-
showcaseEntranceInfo: ShowcaseEntranceInfo | undefined;
|
|
1209
|
-
viewVersion: UserEcommerceEntranceViewVersion;
|
|
1210
|
-
}
|
|
1211
|
-
interface PerceptionFeedbackOption {
|
|
1212
|
-
id: string;
|
|
1213
|
-
contentKey: string;
|
|
1214
|
-
}
|
|
1215
|
-
interface RankUserEnigmaInfo {
|
|
1216
|
-
isEnigmaMaskOn: boolean;
|
|
1217
|
-
}
|
|
1218
|
-
interface SellingPoint {
|
|
1219
|
-
showText: string;
|
|
1220
|
-
sellingPointType: UserEcommerceEntranceSellingPointLiveSellingPointType;
|
|
1221
|
-
}
|
|
1222
|
-
interface ShopEntranceInfo {
|
|
1223
|
-
shopId: string;
|
|
1224
|
-
shopName: string;
|
|
1225
|
-
shopRating: string;
|
|
1226
|
-
storeLabel: StoreLabel | undefined;
|
|
1227
|
-
formatSoldCount: string;
|
|
1228
|
-
soldCount: string;
|
|
1229
|
-
expRatePercentile: number;
|
|
1230
|
-
expRateTopDisplay: string;
|
|
1231
|
-
rateDisplayStyle: number;
|
|
1232
|
-
showRateNotApplicable: boolean;
|
|
1233
|
-
sellingPoint: SellingPoint[];
|
|
1234
|
-
}
|
|
1235
|
-
interface ShowResult {
|
|
1236
|
-
banned: boolean;
|
|
1237
|
-
}
|
|
1238
|
-
interface ShowcaseEntranceInfo {
|
|
1239
|
-
formatSoldCount: string;
|
|
1240
|
-
soldCount: string;
|
|
1241
|
-
showcaseName: string;
|
|
1242
|
-
sellingPoint: SellingPoint[];
|
|
1243
|
-
}
|
|
1244
|
-
interface StoreIdentityLabel {
|
|
1245
|
-
labelType: UserEcommerceEntranceShopEntranceInfoStoreLabelShopIdentityLabelType;
|
|
1246
|
-
identityLabelText: string;
|
|
1247
|
-
identityLogoLight: ShopLabelImage | undefined;
|
|
1248
|
-
identityLogoDark: ShopLabelImage | undefined;
|
|
1249
|
-
identityLabelBgColorLight: string;
|
|
1250
|
-
identityLabelBgColorDark: string;
|
|
1251
|
-
identityLabelTextColorLight: string;
|
|
1252
|
-
identityLabelTextColorDark: string;
|
|
1253
|
-
shopExplanationPageSchema: string;
|
|
1254
|
-
shopIdentityLabelKey: string;
|
|
1255
|
-
}
|
|
1256
|
-
interface StoreLabel {
|
|
1257
|
-
officialLabel: StoreOfficialLabel | undefined;
|
|
1258
|
-
isBytemall: boolean;
|
|
1259
|
-
shopIdentityLabel: StoreIdentityLabel | undefined;
|
|
1260
|
-
}
|
|
1261
|
-
interface StoreOfficialLabel {
|
|
1262
|
-
labelImageLight: ShopLabelImage | undefined;
|
|
1263
|
-
labelImageDark: ShopLabelImage | undefined;
|
|
1264
|
-
labelType: UserEcommerceEntranceShopEntranceInfoStoreLabelStoreBrandLabelType;
|
|
1265
|
-
labelTypeStr: string;
|
|
1266
|
-
}
|
|
1267
|
-
declare const DisplayControl: MessageFns$48<DisplayControl>;
|
|
1268
|
-
declare const DisplayControl_TargetGroupShowRstEntry: MessageFns$48<DisplayControl_TargetGroupShowRstEntry>;
|
|
1269
|
-
declare const EcommerceEntrance: MessageFns$48<EcommerceEntrance>;
|
|
1270
|
-
declare const PerceptionFeedbackOption: MessageFns$48<PerceptionFeedbackOption>;
|
|
1271
|
-
declare const RankUserEnigmaInfo: MessageFns$48<RankUserEnigmaInfo>;
|
|
1272
|
-
declare const SellingPoint: MessageFns$48<SellingPoint>;
|
|
1273
|
-
declare const ShopEntranceInfo: MessageFns$48<ShopEntranceInfo>;
|
|
1274
|
-
declare const ShowResult: MessageFns$48<ShowResult>;
|
|
1275
|
-
declare const ShowcaseEntranceInfo: MessageFns$48<ShowcaseEntranceInfo>;
|
|
1276
|
-
declare const StoreIdentityLabel: MessageFns$48<StoreIdentityLabel>;
|
|
1277
|
-
declare const StoreLabel: MessageFns$48<StoreLabel>;
|
|
1278
|
-
declare const StoreOfficialLabel: MessageFns$48<StoreOfficialLabel>;
|
|
1279
|
-
interface MessageFns$48<T> {
|
|
1145
|
+
declare const EmoteModelAuditInfo: MessageFns$51<EmoteModelAuditInfo>;
|
|
1146
|
+
declare const SOVBriefInfo: MessageFns$51<SOVBriefInfo>;
|
|
1147
|
+
declare const SOVMaskInfo: MessageFns$51<SOVMaskInfo>;
|
|
1148
|
+
declare const SOVPinCardInfo: MessageFns$51<SOVPinCardInfo>;
|
|
1149
|
+
declare const SubGoalPinCard: MessageFns$51<SubGoalPinCard>;
|
|
1150
|
+
declare const SubOnlyVideosBriefInfo: MessageFns$51<SubOnlyVideosBriefInfo>;
|
|
1151
|
+
declare const SubPinCard: MessageFns$51<SubPinCard>;
|
|
1152
|
+
declare const SubPinCardExtra: MessageFns$51<SubPinCardExtra>;
|
|
1153
|
+
declare const SubPinCardText: MessageFns$51<SubPinCardText>;
|
|
1154
|
+
declare const Text$1: MessageFns$51<Text$1>;
|
|
1155
|
+
declare const TimerDetail: MessageFns$51<TimerDetail>;
|
|
1156
|
+
declare const TimerDetailAuditInfo: MessageFns$51<TimerDetailAuditInfo>;
|
|
1157
|
+
interface MessageFns$51<T> {
|
|
1280
1158
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
1281
1159
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
1282
1160
|
}
|
|
@@ -1337,6 +1215,30 @@ interface ComboBadgeInfo {
|
|
|
1337
1215
|
icon: ImageModel | undefined;
|
|
1338
1216
|
comboCount: string;
|
|
1339
1217
|
}
|
|
1218
|
+
interface CreatorScoreDisplayInfo {
|
|
1219
|
+
ecommerceEntranceLabel: CreatorScoreLabelInfo | undefined;
|
|
1220
|
+
scoreLevel: number;
|
|
1221
|
+
}
|
|
1222
|
+
interface CreatorScoreLabelInfo {
|
|
1223
|
+
labelText: string;
|
|
1224
|
+
labelTextColorDark: string;
|
|
1225
|
+
labelTextColorLight: string;
|
|
1226
|
+
logoDark: ImageModel | undefined;
|
|
1227
|
+
logoLight: ImageModel | undefined;
|
|
1228
|
+
popUpInfo: PopUpInfo | undefined;
|
|
1229
|
+
}
|
|
1230
|
+
interface CreatorScoreProfile {
|
|
1231
|
+
finalScore: number;
|
|
1232
|
+
countryCode: string;
|
|
1233
|
+
displayInfo: CreatorScoreDisplayInfo | undefined;
|
|
1234
|
+
scoreInfoExtra: {
|
|
1235
|
+
[key: string]: string;
|
|
1236
|
+
};
|
|
1237
|
+
}
|
|
1238
|
+
interface CreatorScoreProfile_ScoreInfoExtraEntry {
|
|
1239
|
+
key: string;
|
|
1240
|
+
value: string;
|
|
1241
|
+
}
|
|
1340
1242
|
interface EnigmaInfo {
|
|
1341
1243
|
isEnigmaMaskOn: boolean;
|
|
1342
1244
|
}
|
|
@@ -1393,6 +1295,10 @@ interface PaddingInfo {
|
|
|
1393
1295
|
horizontalPaddingRule: HorizontalPaddingRule;
|
|
1394
1296
|
verticalPaddingRule: VerticalPaddingRule;
|
|
1395
1297
|
}
|
|
1298
|
+
interface PopUpInfo {
|
|
1299
|
+
title: string;
|
|
1300
|
+
description: string;
|
|
1301
|
+
}
|
|
1396
1302
|
interface PrivilegeLogExtra {
|
|
1397
1303
|
dataVersion: string;
|
|
1398
1304
|
privilegeId: string;
|
|
@@ -1459,33 +1365,176 @@ interface TextBadge {
|
|
|
1459
1365
|
defaultPattern: string;
|
|
1460
1366
|
pieces: string[];
|
|
1461
1367
|
}
|
|
1462
|
-
declare const ArrowConfig: MessageFns$
|
|
1463
|
-
declare const BadgeStruct: MessageFns$
|
|
1464
|
-
declare const BadgeText: MessageFns$
|
|
1465
|
-
declare const CombineBadgeBackground: MessageFns$
|
|
1466
|
-
declare const CombineBadgeStruct: MessageFns$
|
|
1467
|
-
declare const ComboBadgeInfo: MessageFns$
|
|
1468
|
-
declare const
|
|
1469
|
-
declare const
|
|
1470
|
-
declare const
|
|
1471
|
-
declare const
|
|
1472
|
-
declare const
|
|
1473
|
-
declare const
|
|
1474
|
-
declare const
|
|
1475
|
-
declare const
|
|
1476
|
-
declare const
|
|
1477
|
-
declare const
|
|
1478
|
-
declare const
|
|
1479
|
-
declare const
|
|
1480
|
-
declare const
|
|
1481
|
-
declare const
|
|
1482
|
-
declare const
|
|
1483
|
-
declare const
|
|
1484
|
-
declare const
|
|
1485
|
-
declare const
|
|
1486
|
-
declare const
|
|
1487
|
-
declare const
|
|
1488
|
-
|
|
1368
|
+
declare const ArrowConfig: MessageFns$50<ArrowConfig>;
|
|
1369
|
+
declare const BadgeStruct: MessageFns$50<BadgeStruct>;
|
|
1370
|
+
declare const BadgeText: MessageFns$50<BadgeText>;
|
|
1371
|
+
declare const CombineBadgeBackground: MessageFns$50<CombineBadgeBackground>;
|
|
1372
|
+
declare const CombineBadgeStruct: MessageFns$50<CombineBadgeStruct>;
|
|
1373
|
+
declare const ComboBadgeInfo: MessageFns$50<ComboBadgeInfo>;
|
|
1374
|
+
declare const CreatorScoreDisplayInfo: MessageFns$50<CreatorScoreDisplayInfo>;
|
|
1375
|
+
declare const CreatorScoreLabelInfo: MessageFns$50<CreatorScoreLabelInfo>;
|
|
1376
|
+
declare const CreatorScoreProfile: MessageFns$50<CreatorScoreProfile>;
|
|
1377
|
+
declare const CreatorScoreProfile_ScoreInfoExtraEntry: MessageFns$50<CreatorScoreProfile_ScoreInfoExtraEntry>;
|
|
1378
|
+
declare const EnigmaInfo: MessageFns$50<EnigmaInfo>;
|
|
1379
|
+
declare const FansClubInfo: MessageFns$50<FansClubInfo>;
|
|
1380
|
+
declare const FollowInfo: MessageFns$50<FollowInfo>;
|
|
1381
|
+
declare const FontStyle: MessageFns$50<FontStyle>;
|
|
1382
|
+
declare const IconConfig: MessageFns$50<IconConfig>;
|
|
1383
|
+
declare const ImageBadge: MessageFns$50<ImageBadge>;
|
|
1384
|
+
declare const LabelConfig: MessageFns$50<LabelConfig>;
|
|
1385
|
+
declare const NumberConfig: MessageFns$50<NumberConfig>;
|
|
1386
|
+
declare const OwnRoom: MessageFns$50<OwnRoom>;
|
|
1387
|
+
declare const PaddingInfo: MessageFns$50<PaddingInfo>;
|
|
1388
|
+
declare const PopUpInfo: MessageFns$50<PopUpInfo>;
|
|
1389
|
+
declare const PrivilegeLogExtra: MessageFns$50<PrivilegeLogExtra>;
|
|
1390
|
+
declare const ProfileCardPanel: MessageFns$50<ProfileCardPanel>;
|
|
1391
|
+
declare const ProfileContent: MessageFns$50<ProfileContent>;
|
|
1392
|
+
declare const ProjectionConfig: MessageFns$50<ProjectionConfig>;
|
|
1393
|
+
declare const SeparatorConfig: MessageFns$50<SeparatorConfig>;
|
|
1394
|
+
declare const StretchableBackgroundImage: MessageFns$50<StretchableBackgroundImage>;
|
|
1395
|
+
declare const StringBadge: MessageFns$50<StringBadge>;
|
|
1396
|
+
declare const SubscribeBadge: MessageFns$50<SubscribeBadge>;
|
|
1397
|
+
declare const SubscribeInfo: MessageFns$50<SubscribeInfo>;
|
|
1398
|
+
declare const TextBadge: MessageFns$50<TextBadge>;
|
|
1399
|
+
interface MessageFns$50<T> {
|
|
1400
|
+
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
1401
|
+
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
1402
|
+
}
|
|
1403
|
+
//#endregion
|
|
1404
|
+
//#region src/generated/node/v3/webcast/shared/messages.d.ts
|
|
1405
|
+
interface AuthenticationInfo {
|
|
1406
|
+
customVerify: string;
|
|
1407
|
+
enterpriseVerifyReason: string;
|
|
1408
|
+
authenticationBadge: ImageModel | undefined;
|
|
1409
|
+
}
|
|
1410
|
+
interface EnhancementText {
|
|
1411
|
+
type: number;
|
|
1412
|
+
placeholderInfo: PlaceholderInfo[];
|
|
1413
|
+
}
|
|
1414
|
+
interface EnhancementTextInfo {
|
|
1415
|
+
enhancementTexts: EnhancementText[];
|
|
1416
|
+
}
|
|
1417
|
+
interface PlaceholderInfo {
|
|
1418
|
+
placeholder: string;
|
|
1419
|
+
value: string;
|
|
1420
|
+
}
|
|
1421
|
+
interface ShopLabelImage {
|
|
1422
|
+
height: number;
|
|
1423
|
+
width: number;
|
|
1424
|
+
minetype: string;
|
|
1425
|
+
thumbUri: string;
|
|
1426
|
+
thumbUriList: string[];
|
|
1427
|
+
uri: string;
|
|
1428
|
+
urlList: string[];
|
|
1429
|
+
color: string;
|
|
1430
|
+
}
|
|
1431
|
+
interface UserInfo$2 {
|
|
1432
|
+
userId: string;
|
|
1433
|
+
nickName: string;
|
|
1434
|
+
avatarThumb: ImageModel | undefined;
|
|
1435
|
+
}
|
|
1436
|
+
declare const AuthenticationInfo: MessageFns$49<AuthenticationInfo>;
|
|
1437
|
+
declare const EnhancementText: MessageFns$49<EnhancementText>;
|
|
1438
|
+
declare const EnhancementTextInfo: MessageFns$49<EnhancementTextInfo>;
|
|
1439
|
+
declare const PlaceholderInfo: MessageFns$49<PlaceholderInfo>;
|
|
1440
|
+
declare const ShopLabelImage: MessageFns$49<ShopLabelImage>;
|
|
1441
|
+
declare const UserInfo$2: MessageFns$49<UserInfo$2>;
|
|
1442
|
+
interface MessageFns$49<T> {
|
|
1443
|
+
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
1444
|
+
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
1445
|
+
}
|
|
1446
|
+
//#endregion
|
|
1447
|
+
//#region src/generated/node/v3/webcast/message_proto.d.ts
|
|
1448
|
+
interface DisplayControl {
|
|
1449
|
+
priority: number;
|
|
1450
|
+
duration: string;
|
|
1451
|
+
targetGroupShowRst: {
|
|
1452
|
+
[key: number]: ShowResult;
|
|
1453
|
+
};
|
|
1454
|
+
horizontalTriggerType: DisplayControlHorizontalOnclickTriggerType;
|
|
1455
|
+
}
|
|
1456
|
+
interface DisplayControl_TargetGroupShowRstEntry {
|
|
1457
|
+
key: number;
|
|
1458
|
+
value: ShowResult | undefined;
|
|
1459
|
+
}
|
|
1460
|
+
interface EcommerceEntrance {
|
|
1461
|
+
entranceType: UserEcommerceEntranceEntranceType;
|
|
1462
|
+
creatorType: UserEcommerceEntranceCreatorType;
|
|
1463
|
+
schema: string;
|
|
1464
|
+
shopEntranceInfo: ShopEntranceInfo | undefined;
|
|
1465
|
+
showcaseEntranceInfo: ShowcaseEntranceInfo | undefined;
|
|
1466
|
+
viewVersion: UserEcommerceEntranceViewVersion;
|
|
1467
|
+
}
|
|
1468
|
+
interface PerceptionFeedbackOption {
|
|
1469
|
+
id: string;
|
|
1470
|
+
contentKey: string;
|
|
1471
|
+
}
|
|
1472
|
+
interface RankUserEnigmaInfo {
|
|
1473
|
+
isEnigmaMaskOn: boolean;
|
|
1474
|
+
}
|
|
1475
|
+
interface SellingPoint {
|
|
1476
|
+
showText: string;
|
|
1477
|
+
sellingPointType: UserEcommerceEntranceSellingPointLiveSellingPointType;
|
|
1478
|
+
}
|
|
1479
|
+
interface ShopEntranceInfo {
|
|
1480
|
+
shopId: string;
|
|
1481
|
+
shopName: string;
|
|
1482
|
+
shopRating: string;
|
|
1483
|
+
storeLabel: StoreLabel | undefined;
|
|
1484
|
+
formatSoldCount: string;
|
|
1485
|
+
soldCount: string;
|
|
1486
|
+
expRatePercentile: number;
|
|
1487
|
+
expRateTopDisplay: string;
|
|
1488
|
+
rateDisplayStyle: number;
|
|
1489
|
+
showRateNotApplicable: boolean;
|
|
1490
|
+
sellingPoint: SellingPoint[];
|
|
1491
|
+
}
|
|
1492
|
+
interface ShowResult {
|
|
1493
|
+
banned: boolean;
|
|
1494
|
+
}
|
|
1495
|
+
interface ShowcaseEntranceInfo {
|
|
1496
|
+
formatSoldCount: string;
|
|
1497
|
+
soldCount: string;
|
|
1498
|
+
showcaseName: string;
|
|
1499
|
+
sellingPoint: SellingPoint[];
|
|
1500
|
+
creatorScoreProfile: CreatorScoreProfile | undefined;
|
|
1501
|
+
}
|
|
1502
|
+
interface StoreIdentityLabel {
|
|
1503
|
+
labelType: UserEcommerceEntranceShopEntranceInfoStoreLabelShopIdentityLabelType;
|
|
1504
|
+
identityLabelText: string;
|
|
1505
|
+
identityLogoLight: ShopLabelImage | undefined;
|
|
1506
|
+
identityLogoDark: ShopLabelImage | undefined;
|
|
1507
|
+
identityLabelBgColorLight: string;
|
|
1508
|
+
identityLabelBgColorDark: string;
|
|
1509
|
+
identityLabelTextColorLight: string;
|
|
1510
|
+
identityLabelTextColorDark: string;
|
|
1511
|
+
shopExplanationPageSchema: string;
|
|
1512
|
+
shopIdentityLabelKey: string;
|
|
1513
|
+
}
|
|
1514
|
+
interface StoreLabel {
|
|
1515
|
+
officialLabel: StoreOfficialLabel | undefined;
|
|
1516
|
+
isBytemall: boolean;
|
|
1517
|
+
shopIdentityLabel: StoreIdentityLabel | undefined;
|
|
1518
|
+
}
|
|
1519
|
+
interface StoreOfficialLabel {
|
|
1520
|
+
labelImageLight: ShopLabelImage | undefined;
|
|
1521
|
+
labelImageDark: ShopLabelImage | undefined;
|
|
1522
|
+
labelType: UserEcommerceEntranceShopEntranceInfoStoreLabelStoreBrandLabelType;
|
|
1523
|
+
labelTypeStr: string;
|
|
1524
|
+
}
|
|
1525
|
+
declare const DisplayControl: MessageFns$48<DisplayControl>;
|
|
1526
|
+
declare const DisplayControl_TargetGroupShowRstEntry: MessageFns$48<DisplayControl_TargetGroupShowRstEntry>;
|
|
1527
|
+
declare const EcommerceEntrance: MessageFns$48<EcommerceEntrance>;
|
|
1528
|
+
declare const PerceptionFeedbackOption: MessageFns$48<PerceptionFeedbackOption>;
|
|
1529
|
+
declare const RankUserEnigmaInfo: MessageFns$48<RankUserEnigmaInfo>;
|
|
1530
|
+
declare const SellingPoint: MessageFns$48<SellingPoint>;
|
|
1531
|
+
declare const ShopEntranceInfo: MessageFns$48<ShopEntranceInfo>;
|
|
1532
|
+
declare const ShowResult: MessageFns$48<ShowResult>;
|
|
1533
|
+
declare const ShowcaseEntranceInfo: MessageFns$48<ShowcaseEntranceInfo>;
|
|
1534
|
+
declare const StoreIdentityLabel: MessageFns$48<StoreIdentityLabel>;
|
|
1535
|
+
declare const StoreLabel: MessageFns$48<StoreLabel>;
|
|
1536
|
+
declare const StoreOfficialLabel: MessageFns$48<StoreOfficialLabel>;
|
|
1537
|
+
interface MessageFns$48<T> {
|
|
1489
1538
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
1490
1539
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
1491
1540
|
}
|
|
@@ -1497,8 +1546,8 @@ interface FaceRecognitionMeta {
|
|
|
1497
1546
|
modelNames: string;
|
|
1498
1547
|
sdkExtra: string;
|
|
1499
1548
|
}
|
|
1500
|
-
declare const FaceRecognitionMeta: MessageFns$
|
|
1501
|
-
interface MessageFns$
|
|
1549
|
+
declare const FaceRecognitionMeta: MessageFns$47<FaceRecognitionMeta>;
|
|
1550
|
+
interface MessageFns$47<T> {
|
|
1502
1551
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
1503
1552
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
1504
1553
|
}
|
|
@@ -1536,13 +1585,13 @@ interface SubGoalPinInfo {
|
|
|
1536
1585
|
pinEndTime: string;
|
|
1537
1586
|
pinReadyTime: string;
|
|
1538
1587
|
}
|
|
1539
|
-
declare const GoalComparison: MessageFns$
|
|
1540
|
-
declare const GoalPinInfo: MessageFns$
|
|
1541
|
-
declare const GoalReward: MessageFns$
|
|
1542
|
-
declare const GoalStats: MessageFns$
|
|
1543
|
-
declare const SubGoalContribution: MessageFns$
|
|
1544
|
-
declare const SubGoalPinInfo: MessageFns$
|
|
1545
|
-
interface MessageFns$
|
|
1588
|
+
declare const GoalComparison: MessageFns$46<GoalComparison>;
|
|
1589
|
+
declare const GoalPinInfo: MessageFns$46<GoalPinInfo>;
|
|
1590
|
+
declare const GoalReward: MessageFns$46<GoalReward>;
|
|
1591
|
+
declare const GoalStats: MessageFns$46<GoalStats>;
|
|
1592
|
+
declare const SubGoalContribution: MessageFns$46<SubGoalContribution>;
|
|
1593
|
+
declare const SubGoalPinInfo: MessageFns$46<SubGoalPinInfo>;
|
|
1594
|
+
interface MessageFns$46<T> {
|
|
1546
1595
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
1547
1596
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
1548
1597
|
}
|
|
@@ -1586,6 +1635,53 @@ interface GiftColorInfo {
|
|
|
1586
1635
|
colorEffectId: string;
|
|
1587
1636
|
isDefault: boolean;
|
|
1588
1637
|
colorImageSize: string;
|
|
1638
|
+
colorReason: string[];
|
|
1639
|
+
colorNameEnglish: string;
|
|
1640
|
+
giftDescribe: string;
|
|
1641
|
+
}
|
|
1642
|
+
interface GiftEffectCrossScreenStickerSpec {
|
|
1643
|
+
singleActionAssetIds: {
|
|
1644
|
+
[key: string]: number;
|
|
1645
|
+
};
|
|
1646
|
+
actionAssetIds: {
|
|
1647
|
+
[key: string]: number;
|
|
1648
|
+
};
|
|
1649
|
+
reactionAssetIds: {
|
|
1650
|
+
[key: string]: number;
|
|
1651
|
+
};
|
|
1652
|
+
}
|
|
1653
|
+
interface GiftEffectCrossScreenStickerSpec_SingleActionAssetIdsEntry {
|
|
1654
|
+
key: string;
|
|
1655
|
+
value: number;
|
|
1656
|
+
}
|
|
1657
|
+
interface GiftEffectCrossScreenStickerSpec_ActionAssetIdsEntry {
|
|
1658
|
+
key: string;
|
|
1659
|
+
value: number;
|
|
1660
|
+
}
|
|
1661
|
+
interface GiftEffectCrossScreenStickerSpec_ReactionAssetIdsEntry {
|
|
1662
|
+
key: string;
|
|
1663
|
+
value: number;
|
|
1664
|
+
}
|
|
1665
|
+
interface GiftEffectLynxSpec {
|
|
1666
|
+
assetIds: string[];
|
|
1667
|
+
}
|
|
1668
|
+
interface GiftEffectPrefabSpec {
|
|
1669
|
+
templateAssetId: string;
|
|
1670
|
+
prefabAssetIds: string[];
|
|
1671
|
+
}
|
|
1672
|
+
interface GiftEffectSerialSpec {
|
|
1673
|
+
serialAssetIds: string[];
|
|
1674
|
+
}
|
|
1675
|
+
interface GiftEffectSpecs {
|
|
1676
|
+
crossScreenSticker: GiftEffectCrossScreenStickerSpec | undefined;
|
|
1677
|
+
lynx: GiftEffectLynxSpec | undefined;
|
|
1678
|
+
prefab: GiftEffectPrefabSpec | undefined;
|
|
1679
|
+
serialSpec: GiftEffectSerialSpec | undefined;
|
|
1680
|
+
streamEffectSpec: GiftEffectStreamSpec | undefined;
|
|
1681
|
+
}
|
|
1682
|
+
interface GiftEffectStreamSpec {
|
|
1683
|
+
basicAssetId: string;
|
|
1684
|
+
extraAssetIds: string[];
|
|
1589
1685
|
}
|
|
1590
1686
|
interface GiftPanelBeaconBubble {
|
|
1591
1687
|
lynxUrl: string;
|
|
@@ -1694,33 +1790,48 @@ interface SceneRestriction {
|
|
|
1694
1790
|
cohostHiddenGids: string[];
|
|
1695
1791
|
multiguestHiddenGids: string[];
|
|
1696
1792
|
}
|
|
1793
|
+
interface SecondaryEffectInfo {
|
|
1794
|
+
effectIds: string[];
|
|
1795
|
+
builtinStrings: string[];
|
|
1796
|
+
minuteGameGameplayId: string;
|
|
1797
|
+
}
|
|
1697
1798
|
interface TransitionConfig {
|
|
1698
1799
|
configId: string;
|
|
1699
1800
|
resourceImage: ImageModel | undefined;
|
|
1700
1801
|
}
|
|
1701
|
-
declare const AssetBase: MessageFns$
|
|
1702
|
-
declare const AssetExtra: MessageFns$
|
|
1703
|
-
declare const AuditInfo: MessageFns$
|
|
1704
|
-
declare const BEFViewRenderSize: MessageFns$
|
|
1705
|
-
declare const DistributionStrategy: MessageFns$
|
|
1706
|
-
declare const DynamicRestriction: MessageFns$
|
|
1707
|
-
declare const FlyingMicResources: MessageFns$
|
|
1708
|
-
declare const GiftColorInfo: MessageFns$
|
|
1709
|
-
declare const
|
|
1710
|
-
declare const
|
|
1711
|
-
declare const
|
|
1712
|
-
declare const
|
|
1713
|
-
declare const
|
|
1714
|
-
declare const
|
|
1715
|
-
declare const
|
|
1716
|
-
declare const
|
|
1717
|
-
declare const
|
|
1718
|
-
declare const
|
|
1719
|
-
declare const
|
|
1720
|
-
declare const
|
|
1721
|
-
declare const
|
|
1722
|
-
declare const
|
|
1723
|
-
|
|
1802
|
+
declare const AssetBase: MessageFns$45<AssetBase>;
|
|
1803
|
+
declare const AssetExtra: MessageFns$45<AssetExtra>;
|
|
1804
|
+
declare const AuditInfo: MessageFns$45<AuditInfo>;
|
|
1805
|
+
declare const BEFViewRenderSize: MessageFns$45<BEFViewRenderSize>;
|
|
1806
|
+
declare const DistributionStrategy: MessageFns$45<DistributionStrategy>;
|
|
1807
|
+
declare const DynamicRestriction: MessageFns$45<DynamicRestriction>;
|
|
1808
|
+
declare const FlyingMicResources: MessageFns$45<FlyingMicResources>;
|
|
1809
|
+
declare const GiftColorInfo: MessageFns$45<GiftColorInfo>;
|
|
1810
|
+
declare const GiftEffectCrossScreenStickerSpec: MessageFns$45<GiftEffectCrossScreenStickerSpec>;
|
|
1811
|
+
declare const GiftEffectCrossScreenStickerSpec_SingleActionAssetIdsEntry: MessageFns$45<GiftEffectCrossScreenStickerSpec_SingleActionAssetIdsEntry>;
|
|
1812
|
+
declare const GiftEffectCrossScreenStickerSpec_ActionAssetIdsEntry: MessageFns$45<GiftEffectCrossScreenStickerSpec_ActionAssetIdsEntry>;
|
|
1813
|
+
declare const GiftEffectCrossScreenStickerSpec_ReactionAssetIdsEntry: MessageFns$45<GiftEffectCrossScreenStickerSpec_ReactionAssetIdsEntry>;
|
|
1814
|
+
declare const GiftEffectLynxSpec: MessageFns$45<GiftEffectLynxSpec>;
|
|
1815
|
+
declare const GiftEffectPrefabSpec: MessageFns$45<GiftEffectPrefabSpec>;
|
|
1816
|
+
declare const GiftEffectSerialSpec: MessageFns$45<GiftEffectSerialSpec>;
|
|
1817
|
+
declare const GiftEffectSpecs: MessageFns$45<GiftEffectSpecs>;
|
|
1818
|
+
declare const GiftEffectStreamSpec: MessageFns$45<GiftEffectStreamSpec>;
|
|
1819
|
+
declare const GiftPanelBeaconBubble: MessageFns$45<GiftPanelBeaconBubble>;
|
|
1820
|
+
declare const GiftResource: MessageFns$45<GiftResource>;
|
|
1821
|
+
declare const LiveStreamGoal: MessageFns$45<LiveStreamGoal>;
|
|
1822
|
+
declare const LiveStreamGoalContributor: MessageFns$45<LiveStreamGoalContributor>;
|
|
1823
|
+
declare const LiveStreamGoalIndicator: MessageFns$45<LiveStreamGoalIndicator>;
|
|
1824
|
+
declare const LiveStreamSubGoal: MessageFns$45<LiveStreamSubGoal>;
|
|
1825
|
+
declare const LiveStreamSubGoalGift: MessageFns$45<LiveStreamSubGoalGift>;
|
|
1826
|
+
declare const LokiExtraContent: MessageFns$45<LokiExtraContent>;
|
|
1827
|
+
declare const LynxGiftExtra: MessageFns$45<LynxGiftExtra>;
|
|
1828
|
+
declare const MatchInfo: MessageFns$45<MatchInfo>;
|
|
1829
|
+
declare const PrefabBundle: MessageFns$45<PrefabBundle>;
|
|
1830
|
+
declare const ReceiverRestriction: MessageFns$45<ReceiverRestriction>;
|
|
1831
|
+
declare const SceneRestriction: MessageFns$45<SceneRestriction>;
|
|
1832
|
+
declare const SecondaryEffectInfo: MessageFns$45<SecondaryEffectInfo>;
|
|
1833
|
+
declare const TransitionConfig: MessageFns$45<TransitionConfig>;
|
|
1834
|
+
interface MessageFns$45<T> {
|
|
1724
1835
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
1725
1836
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
1726
1837
|
}
|
|
@@ -1759,10 +1870,10 @@ interface VideoResource {
|
|
|
1759
1870
|
videoUrl: ResourceModel | undefined;
|
|
1760
1871
|
videoMd5: string;
|
|
1761
1872
|
}
|
|
1762
|
-
declare const AssetsModel: MessageFns$
|
|
1763
|
-
declare const ResourceModel: MessageFns$
|
|
1764
|
-
declare const VideoResource: MessageFns$
|
|
1765
|
-
interface MessageFns$
|
|
1873
|
+
declare const AssetsModel: MessageFns$44<AssetsModel>;
|
|
1874
|
+
declare const ResourceModel: MessageFns$44<ResourceModel>;
|
|
1875
|
+
declare const VideoResource: MessageFns$44<VideoResource>;
|
|
1876
|
+
interface MessageFns$44<T> {
|
|
1766
1877
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
1767
1878
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
1768
1879
|
}
|
|
@@ -1790,6 +1901,11 @@ interface AnchorLevel {
|
|
|
1790
1901
|
stageLevel: ImageModel | undefined;
|
|
1791
1902
|
smallIcon: ImageModel | undefined;
|
|
1792
1903
|
}
|
|
1904
|
+
interface AudioResource {
|
|
1905
|
+
audioUrl: string;
|
|
1906
|
+
lyricsUrl: string;
|
|
1907
|
+
snippetId: string;
|
|
1908
|
+
}
|
|
1793
1909
|
interface AuthenticationInfo$1 {
|
|
1794
1910
|
customVerify: string;
|
|
1795
1911
|
enterpriseVerifyReason: string;
|
|
@@ -1818,6 +1934,14 @@ interface BorderInfo {
|
|
|
1818
1934
|
descStarlingKey: string;
|
|
1819
1935
|
name: string;
|
|
1820
1936
|
description: string;
|
|
1937
|
+
isTallerAvatarBackground: boolean;
|
|
1938
|
+
}
|
|
1939
|
+
interface ColorGroup {
|
|
1940
|
+
groupName: string;
|
|
1941
|
+
colorInfos: GiftColorInfo[];
|
|
1942
|
+
}
|
|
1943
|
+
interface ColorPickerInfo {
|
|
1944
|
+
groups: ColorGroup[];
|
|
1821
1945
|
}
|
|
1822
1946
|
interface CrossScreenEffectInfo {
|
|
1823
1947
|
singleActionEffectIds: {
|
|
@@ -1892,6 +2016,11 @@ interface GiftSeriesInfo {
|
|
|
1892
2016
|
seriesName: string;
|
|
1893
2017
|
giftIds: string[];
|
|
1894
2018
|
enabled: boolean;
|
|
2019
|
+
containerBackground: ImageModel | undefined;
|
|
2020
|
+
sendGiftButtonColor: string;
|
|
2021
|
+
pointingBackTriColor: string;
|
|
2022
|
+
seriesNameColor: string;
|
|
2023
|
+
endTimeSec: string;
|
|
1895
2024
|
}
|
|
1896
2025
|
interface GiftSkin {
|
|
1897
2026
|
giftSkinId: string;
|
|
@@ -1963,6 +2092,13 @@ interface LiveEventInfo_WalletPkgDictEntry {
|
|
|
1963
2092
|
interface LynxCrossScreenEffectInfo {
|
|
1964
2093
|
effectIds: string[];
|
|
1965
2094
|
}
|
|
2095
|
+
interface MusicGiftInfo {
|
|
2096
|
+
artistName: string;
|
|
2097
|
+
resource: AudioResource | undefined;
|
|
2098
|
+
songId: string;
|
|
2099
|
+
moodId: string;
|
|
2100
|
+
songName: string;
|
|
2101
|
+
}
|
|
1966
2102
|
interface RandomGiftBubble {
|
|
1967
2103
|
displayText: string;
|
|
1968
2104
|
iconDynamicEffect: ImageModel | undefined;
|
|
@@ -2050,48 +2186,52 @@ interface WalletPackage {
|
|
|
2050
2186
|
iapId: string;
|
|
2051
2187
|
usdPriceShow: string;
|
|
2052
2188
|
}
|
|
2053
|
-
declare const ActivityRewardInfo: MessageFns$
|
|
2054
|
-
declare const AnchorInfo: MessageFns$
|
|
2055
|
-
declare const AnchorLevel: MessageFns$
|
|
2056
|
-
declare const
|
|
2057
|
-
declare const
|
|
2058
|
-
declare const
|
|
2059
|
-
declare const
|
|
2060
|
-
declare const
|
|
2061
|
-
declare const
|
|
2062
|
-
declare const
|
|
2063
|
-
declare const
|
|
2064
|
-
declare const
|
|
2065
|
-
declare const
|
|
2066
|
-
declare const
|
|
2067
|
-
declare const
|
|
2068
|
-
declare const
|
|
2069
|
-
declare const
|
|
2070
|
-
declare const
|
|
2071
|
-
declare const
|
|
2072
|
-
declare const
|
|
2073
|
-
declare const
|
|
2074
|
-
declare const
|
|
2075
|
-
declare const
|
|
2076
|
-
declare const
|
|
2077
|
-
declare const
|
|
2078
|
-
declare const
|
|
2079
|
-
declare const
|
|
2080
|
-
declare const
|
|
2081
|
-
declare const
|
|
2082
|
-
declare const
|
|
2083
|
-
declare const
|
|
2084
|
-
declare const
|
|
2085
|
-
declare const
|
|
2086
|
-
declare const
|
|
2087
|
-
declare const
|
|
2088
|
-
declare const
|
|
2089
|
-
declare const
|
|
2090
|
-
declare const
|
|
2091
|
-
declare const
|
|
2092
|
-
declare const
|
|
2093
|
-
declare const
|
|
2094
|
-
|
|
2189
|
+
declare const ActivityRewardInfo: MessageFns$43<ActivityRewardInfo>;
|
|
2190
|
+
declare const AnchorInfo: MessageFns$43<AnchorInfo>;
|
|
2191
|
+
declare const AnchorLevel: MessageFns$43<AnchorLevel>;
|
|
2192
|
+
declare const AudioResource: MessageFns$43<AudioResource>;
|
|
2193
|
+
declare const AuthenticationInfo$1: MessageFns$43<AuthenticationInfo$1>;
|
|
2194
|
+
declare const Author: MessageFns$43<Author>;
|
|
2195
|
+
declare const BatchGiftInfo: MessageFns$43<BatchGiftInfo>;
|
|
2196
|
+
declare const BorderInfo: MessageFns$43<BorderInfo>;
|
|
2197
|
+
declare const ColorGroup: MessageFns$43<ColorGroup>;
|
|
2198
|
+
declare const ColorPickerInfo: MessageFns$43<ColorPickerInfo>;
|
|
2199
|
+
declare const CrossScreenEffectInfo: MessageFns$43<CrossScreenEffectInfo>;
|
|
2200
|
+
declare const CrossScreenEffectInfo_SingleActionEffectIdsEntry: MessageFns$43<CrossScreenEffectInfo_SingleActionEffectIdsEntry>;
|
|
2201
|
+
declare const CrossScreenEffectInfo_ActionEffectIdsEntry: MessageFns$43<CrossScreenEffectInfo_ActionEffectIdsEntry>;
|
|
2202
|
+
declare const CrossScreenEffectInfo_ReactionEffectIdsEntry: MessageFns$43<CrossScreenEffectInfo_ReactionEffectIdsEntry>;
|
|
2203
|
+
declare const FansClubData: MessageFns$43<FansClubData>;
|
|
2204
|
+
declare const FansClubMember: MessageFns$43<FansClubMember>;
|
|
2205
|
+
declare const FansClubMember_PreferDataEntry: MessageFns$43<FansClubMember_PreferDataEntry>;
|
|
2206
|
+
declare const GiftBoxInfo: MessageFns$43<GiftBoxInfo>;
|
|
2207
|
+
declare const GiftInfoInBox: MessageFns$43<GiftInfoInBox>;
|
|
2208
|
+
declare const GiftLockInfo: MessageFns$43<GiftLockInfo>;
|
|
2209
|
+
declare const GiftRandomEffectInfo: MessageFns$43<GiftRandomEffectInfo>;
|
|
2210
|
+
declare const GiftSeriesInfo: MessageFns$43<GiftSeriesInfo>;
|
|
2211
|
+
declare const GiftSkin: MessageFns$43<GiftSkin>;
|
|
2212
|
+
declare const GiftSkinToGiftTextsInfo: MessageFns$43<GiftSkinToGiftTextsInfo>;
|
|
2213
|
+
declare const GiftSponsorInfo: MessageFns$43<GiftSponsorInfo>;
|
|
2214
|
+
declare const GiftText: MessageFns$43<GiftText>;
|
|
2215
|
+
declare const GiftsBoxInfo: MessageFns$43<GiftsBoxInfo>;
|
|
2216
|
+
declare const GradeIcon: MessageFns$43<GradeIcon>;
|
|
2217
|
+
declare const Hashtag: MessageFns$43<Hashtag>;
|
|
2218
|
+
declare const LikeEffect: MessageFns$43<LikeEffect>;
|
|
2219
|
+
declare const LiveEventInfo: MessageFns$43<LiveEventInfo>;
|
|
2220
|
+
declare const LiveEventInfo_WalletPkgDictEntry: MessageFns$43<LiveEventInfo_WalletPkgDictEntry>;
|
|
2221
|
+
declare const LynxCrossScreenEffectInfo: MessageFns$43<LynxCrossScreenEffectInfo>;
|
|
2222
|
+
declare const MusicGiftInfo: MessageFns$43<MusicGiftInfo>;
|
|
2223
|
+
declare const RandomGiftBubble: MessageFns$43<RandomGiftBubble>;
|
|
2224
|
+
declare const RandomGiftPanelBanner: MessageFns$43<RandomGiftPanelBanner>;
|
|
2225
|
+
declare const SchemeInfo: MessageFns$43<SchemeInfo>;
|
|
2226
|
+
declare const UGGiftStructInfo: MessageFns$43<UGGiftStructInfo>;
|
|
2227
|
+
declare const UserAttr: MessageFns$43<UserAttr>;
|
|
2228
|
+
declare const UserAttr_AdminPermissionsEntry: MessageFns$43<UserAttr_AdminPermissionsEntry>;
|
|
2229
|
+
declare const UserBadge: MessageFns$43<UserBadge>;
|
|
2230
|
+
declare const UserBadge_IconsEntry: MessageFns$43<UserBadge_IconsEntry>;
|
|
2231
|
+
declare const UserHonor: MessageFns$43<UserHonor>;
|
|
2232
|
+
declare const VoteUser: MessageFns$43<VoteUser>;
|
|
2233
|
+
declare const WalletPackage: MessageFns$43<WalletPackage>;
|
|
2234
|
+
interface MessageFns$43<T> {
|
|
2095
2235
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
2096
2236
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
2097
2237
|
}
|
|
@@ -2216,8 +2356,8 @@ interface User {
|
|
|
2216
2356
|
isAnchorMarked: boolean;
|
|
2217
2357
|
enigmaInfo: EnigmaInfo | undefined;
|
|
2218
2358
|
}
|
|
2219
|
-
declare const User: MessageFns$
|
|
2220
|
-
interface MessageFns$
|
|
2359
|
+
declare const User: MessageFns$42<User>;
|
|
2360
|
+
interface MessageFns$42<T> {
|
|
2221
2361
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
2222
2362
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
2223
2363
|
}
|
|
@@ -2229,13 +2369,26 @@ interface EmoteUploadInfo {
|
|
|
2229
2369
|
userInfo: User | undefined;
|
|
2230
2370
|
userIdStr: string;
|
|
2231
2371
|
}
|
|
2232
|
-
declare const EmoteUploadInfo: MessageFns$
|
|
2233
|
-
interface MessageFns$
|
|
2372
|
+
declare const EmoteUploadInfo: MessageFns$41<EmoteUploadInfo>;
|
|
2373
|
+
interface MessageFns$41<T> {
|
|
2234
2374
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
2235
2375
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
2236
2376
|
}
|
|
2237
2377
|
//#endregion
|
|
2238
2378
|
//#region src/generated/node/v3/webcast/chatroom/model/interact_messages.d.ts
|
|
2379
|
+
interface ActivityBadgeInfo {
|
|
2380
|
+
badgeText: LinkmicDisplayText | undefined;
|
|
2381
|
+
badgeTextDark: LinkmicDisplayText | undefined;
|
|
2382
|
+
backgroundColor: string;
|
|
2383
|
+
backgroundColorDark: string;
|
|
2384
|
+
eventTrace: {
|
|
2385
|
+
[key: string]: string;
|
|
2386
|
+
};
|
|
2387
|
+
}
|
|
2388
|
+
interface ActivityBadgeInfo_EventTraceEntry {
|
|
2389
|
+
key: string;
|
|
2390
|
+
value: string;
|
|
2391
|
+
}
|
|
2239
2392
|
interface BattleGamePlayContent {
|
|
2240
2393
|
battleId: string;
|
|
2241
2394
|
groupChannelId: string;
|
|
@@ -2324,6 +2477,21 @@ interface LinkMicGiftGalleryDisplayText {
|
|
|
2324
2477
|
color: string;
|
|
2325
2478
|
darkModeColor: string;
|
|
2326
2479
|
}
|
|
2480
|
+
interface LinkmicDisplayText {
|
|
2481
|
+
color: string;
|
|
2482
|
+
key: string;
|
|
2483
|
+
defaultPattern: string;
|
|
2484
|
+
pieces: LinkmicDisplayTextPieces[];
|
|
2485
|
+
}
|
|
2486
|
+
interface LinkmicDisplayTextPieces {
|
|
2487
|
+
stringPiece: string;
|
|
2488
|
+
}
|
|
2489
|
+
interface LinkmicShareRevenueSettingStruct {
|
|
2490
|
+
shareRevenueSettingVersionCode: string;
|
|
2491
|
+
linkmicShareRevenueSetting: number;
|
|
2492
|
+
linkmicShareRevenueSettingRatio: number;
|
|
2493
|
+
enableSettingRatio: boolean;
|
|
2494
|
+
}
|
|
2327
2495
|
interface OptPairInfo {
|
|
2328
2496
|
mappingId: string;
|
|
2329
2497
|
expectedTimeSec: string;
|
|
@@ -2336,11 +2504,14 @@ interface RandomMatchContent {
|
|
|
2336
2504
|
sourceType: string;
|
|
2337
2505
|
pairedTime: string;
|
|
2338
2506
|
pairedGroupList: UserGroup[];
|
|
2507
|
+
matchedPreferenceTag: number;
|
|
2339
2508
|
}
|
|
2340
2509
|
interface RandomMatchContentUserInfo {
|
|
2341
2510
|
userId: string;
|
|
2342
2511
|
roomId: string;
|
|
2343
2512
|
invitationRoleType: number;
|
|
2513
|
+
avatarThumb: ImageModel | undefined;
|
|
2514
|
+
nickname: string;
|
|
2344
2515
|
}
|
|
2345
2516
|
interface RivalsGameTag {
|
|
2346
2517
|
tagId: string;
|
|
@@ -2348,13 +2519,21 @@ interface RivalsGameTag {
|
|
|
2348
2519
|
gapTimeTag: string;
|
|
2349
2520
|
}
|
|
2350
2521
|
interface SecondDegreeRelationContent {
|
|
2351
|
-
relatedUsers: UserInfo$
|
|
2522
|
+
relatedUsers: UserInfo$2[];
|
|
2352
2523
|
totalRelatedUserCnt: string;
|
|
2353
2524
|
}
|
|
2354
2525
|
interface SimilarInterestContent {
|
|
2355
2526
|
contentId: string;
|
|
2356
2527
|
displayText: string;
|
|
2357
2528
|
}
|
|
2529
|
+
interface SubtitleSettings {
|
|
2530
|
+
hasRight: number;
|
|
2531
|
+
temporaryBan: number;
|
|
2532
|
+
enable: number;
|
|
2533
|
+
expireDate: string;
|
|
2534
|
+
targetLanguage: string;
|
|
2535
|
+
labelText: string;
|
|
2536
|
+
}
|
|
2358
2537
|
interface TagV2 {
|
|
2359
2538
|
tagClassification: TagV2TagClassification;
|
|
2360
2539
|
tagType: number;
|
|
@@ -2382,40 +2561,47 @@ interface UserGroup {
|
|
|
2382
2561
|
}
|
|
2383
2562
|
interface UserSuggestionInfo {
|
|
2384
2563
|
voteCount: string;
|
|
2385
|
-
voterInfoList: UserInfo$
|
|
2564
|
+
voterInfoList: UserInfo$2[];
|
|
2565
|
+
detailPageLynx: string;
|
|
2386
2566
|
}
|
|
2387
2567
|
interface VirtualWaitingUser {
|
|
2388
2568
|
sendUserId: string;
|
|
2389
2569
|
sendTimestamp: string;
|
|
2390
2570
|
avatars: ImageModel[];
|
|
2391
2571
|
}
|
|
2392
|
-
declare const
|
|
2393
|
-
declare const
|
|
2394
|
-
declare const
|
|
2395
|
-
declare const
|
|
2396
|
-
declare const
|
|
2397
|
-
declare const
|
|
2398
|
-
declare const
|
|
2399
|
-
declare const
|
|
2400
|
-
declare const
|
|
2401
|
-
declare const
|
|
2402
|
-
declare const
|
|
2403
|
-
declare const
|
|
2404
|
-
declare const
|
|
2405
|
-
declare const
|
|
2406
|
-
declare const
|
|
2407
|
-
declare const
|
|
2408
|
-
declare const
|
|
2409
|
-
declare const
|
|
2410
|
-
declare const
|
|
2411
|
-
declare const
|
|
2412
|
-
declare const
|
|
2413
|
-
declare const
|
|
2414
|
-
declare const
|
|
2415
|
-
declare const
|
|
2416
|
-
declare const
|
|
2417
|
-
declare const
|
|
2418
|
-
|
|
2572
|
+
declare const ActivityBadgeInfo: MessageFns$40<ActivityBadgeInfo>;
|
|
2573
|
+
declare const ActivityBadgeInfo_EventTraceEntry: MessageFns$40<ActivityBadgeInfo_EventTraceEntry>;
|
|
2574
|
+
declare const BattleGamePlayContent: MessageFns$40<BattleGamePlayContent>;
|
|
2575
|
+
declare const BattleGamePlayContentUserInfo: MessageFns$40<BattleGamePlayContentUserInfo>;
|
|
2576
|
+
declare const BattleUserSettings: MessageFns$40<BattleUserSettings>;
|
|
2577
|
+
declare const CohostABInfo: MessageFns$40<CohostABInfo>;
|
|
2578
|
+
declare const CohostABTest: MessageFns$40<CohostABTest>;
|
|
2579
|
+
declare const CohostABTestList: MessageFns$40<CohostABTestList>;
|
|
2580
|
+
declare const CohostABTestSetting: MessageFns$40<CohostABTestSetting>;
|
|
2581
|
+
declare const CohostListUser: MessageFns$40<CohostListUser>;
|
|
2582
|
+
declare const CohostTopic: MessageFns$40<CohostTopic>;
|
|
2583
|
+
declare const GamePlayContent: MessageFns$40<GamePlayContent>;
|
|
2584
|
+
declare const GiftGalleryBadgeInfo: MessageFns$40<GiftGalleryBadgeInfo>;
|
|
2585
|
+
declare const GiftGalleryBadgeSection: MessageFns$40<GiftGalleryBadgeSection>;
|
|
2586
|
+
declare const LinkMicGiftGalleryDisplayText: MessageFns$40<LinkMicGiftGalleryDisplayText>;
|
|
2587
|
+
declare const LinkmicDisplayText: MessageFns$40<LinkmicDisplayText>;
|
|
2588
|
+
declare const LinkmicDisplayTextPieces: MessageFns$40<LinkmicDisplayTextPieces>;
|
|
2589
|
+
declare const LinkmicShareRevenueSettingStruct: MessageFns$40<LinkmicShareRevenueSettingStruct>;
|
|
2590
|
+
declare const OptPairInfo: MessageFns$40<OptPairInfo>;
|
|
2591
|
+
declare const RandomMatchContent: MessageFns$40<RandomMatchContent>;
|
|
2592
|
+
declare const RandomMatchContentUserInfo: MessageFns$40<RandomMatchContentUserInfo>;
|
|
2593
|
+
declare const RivalsGameTag: MessageFns$40<RivalsGameTag>;
|
|
2594
|
+
declare const SecondDegreeRelationContent: MessageFns$40<SecondDegreeRelationContent>;
|
|
2595
|
+
declare const SimilarInterestContent: MessageFns$40<SimilarInterestContent>;
|
|
2596
|
+
declare const SubtitleSettings: MessageFns$40<SubtitleSettings>;
|
|
2597
|
+
declare const TagV2: MessageFns$40<TagV2>;
|
|
2598
|
+
declare const TeamInfo: MessageFns$40<TeamInfo>;
|
|
2599
|
+
declare const TeamUser: MessageFns$40<TeamUser>;
|
|
2600
|
+
declare const TopHostInfo: MessageFns$40<TopHostInfo>;
|
|
2601
|
+
declare const UserGroup: MessageFns$40<UserGroup>;
|
|
2602
|
+
declare const UserSuggestionInfo: MessageFns$40<UserSuggestionInfo>;
|
|
2603
|
+
declare const VirtualWaitingUser: MessageFns$40<VirtualWaitingUser>;
|
|
2604
|
+
interface MessageFns$40<T> {
|
|
2419
2605
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
2420
2606
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
2421
2607
|
}
|
|
@@ -2442,15 +2628,16 @@ interface AnchorLinkmicUserSettings {
|
|
|
2442
2628
|
allowLiveNoticeOfSuggested: boolean;
|
|
2443
2629
|
allowGuestRequestDuringCohost: boolean;
|
|
2444
2630
|
allowGuestApplyDuringCohost: boolean;
|
|
2631
|
+
subtitleSetting: SubtitleSettings | undefined;
|
|
2445
2632
|
}
|
|
2446
2633
|
interface BattleInfo {
|
|
2447
2634
|
infoType: RivalExtraInfoBattleInfoBattleInfoType;
|
|
2448
2635
|
value: string;
|
|
2449
2636
|
}
|
|
2450
2637
|
interface LinkerInfo {
|
|
2451
|
-
linkedUsers: UserInfo$
|
|
2638
|
+
linkedUsers: UserInfo$2[];
|
|
2452
2639
|
inQuickPairing: boolean;
|
|
2453
|
-
linkedGuestUsers: UserInfo$
|
|
2640
|
+
linkedGuestUsers: UserInfo$2[];
|
|
2454
2641
|
}
|
|
2455
2642
|
interface OffliveInviteInfo {
|
|
2456
2643
|
inviterTimestamp: string;
|
|
@@ -2487,20 +2674,22 @@ interface RivalExtraInfo {
|
|
|
2487
2674
|
giftGalleryBadgeInfo: GiftGalleryBadgeInfo | undefined;
|
|
2488
2675
|
offliveInviteInfo: OffliveInviteInfo | undefined;
|
|
2489
2676
|
userSuggestionInfo: UserSuggestionInfo | undefined;
|
|
2677
|
+
friendSuggestionInfo: UserSuggestionInfo | undefined;
|
|
2678
|
+
activityBadgeInfo: ActivityBadgeInfo | undefined;
|
|
2490
2679
|
}
|
|
2491
2680
|
interface Tag$1 {
|
|
2492
2681
|
tagType: number;
|
|
2493
2682
|
tagValue: string;
|
|
2494
2683
|
tagText: string;
|
|
2495
2684
|
}
|
|
2496
|
-
declare const AnchorLinkmicUserSettings: MessageFns$
|
|
2497
|
-
declare const BattleInfo: MessageFns$
|
|
2498
|
-
declare const LinkerInfo: MessageFns$
|
|
2499
|
-
declare const OffliveInviteInfo: MessageFns$
|
|
2500
|
-
declare const ReserveInfo: MessageFns$
|
|
2501
|
-
declare const RivalExtraInfo: MessageFns$
|
|
2502
|
-
declare const Tag$1: MessageFns$
|
|
2503
|
-
interface MessageFns$
|
|
2685
|
+
declare const AnchorLinkmicUserSettings: MessageFns$39<AnchorLinkmicUserSettings>;
|
|
2686
|
+
declare const BattleInfo: MessageFns$39<BattleInfo>;
|
|
2687
|
+
declare const LinkerInfo: MessageFns$39<LinkerInfo>;
|
|
2688
|
+
declare const OffliveInviteInfo: MessageFns$39<OffliveInviteInfo>;
|
|
2689
|
+
declare const ReserveInfo: MessageFns$39<ReserveInfo>;
|
|
2690
|
+
declare const RivalExtraInfo: MessageFns$39<RivalExtraInfo>;
|
|
2691
|
+
declare const Tag$1: MessageFns$39<Tag$1>;
|
|
2692
|
+
interface MessageFns$39<T> {
|
|
2504
2693
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
2505
2694
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
2506
2695
|
}
|
|
@@ -2510,8 +2699,8 @@ interface LinkPosition {
|
|
|
2510
2699
|
position: number;
|
|
2511
2700
|
opt: number;
|
|
2512
2701
|
}
|
|
2513
|
-
declare const LinkPosition: MessageFns$
|
|
2514
|
-
interface MessageFns$
|
|
2702
|
+
declare const LinkPosition: MessageFns$38<LinkPosition>;
|
|
2703
|
+
interface MessageFns$38<T> {
|
|
2515
2704
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
2516
2705
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
2517
2706
|
}
|
|
@@ -2521,8 +2710,8 @@ interface MicPositionData {
|
|
|
2521
2710
|
type: number;
|
|
2522
2711
|
link: LinkPosition | undefined;
|
|
2523
2712
|
}
|
|
2524
|
-
declare const MicPositionData: MessageFns$
|
|
2525
|
-
interface MessageFns$
|
|
2713
|
+
declare const MicPositionData: MessageFns$37<MicPositionData>;
|
|
2714
|
+
interface MessageFns$37<T> {
|
|
2526
2715
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
2527
2716
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
2528
2717
|
}
|
|
@@ -2532,8 +2721,8 @@ interface Player {
|
|
|
2532
2721
|
roomId: string;
|
|
2533
2722
|
userId: string;
|
|
2534
2723
|
}
|
|
2535
|
-
declare const Player: MessageFns$
|
|
2536
|
-
interface MessageFns$
|
|
2724
|
+
declare const Player: MessageFns$36<Player>;
|
|
2725
|
+
interface MessageFns$36<T> {
|
|
2537
2726
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
2538
2727
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
2539
2728
|
}
|
|
@@ -2788,10 +2977,27 @@ interface BackGroundImageState {
|
|
|
2788
2977
|
}
|
|
2789
2978
|
interface CohostMode {
|
|
2790
2979
|
isTakeTheStageV2Supported: boolean;
|
|
2980
|
+
highestTakeTheStageVersionSupported: string;
|
|
2791
2981
|
}
|
|
2792
2982
|
interface CohostStreamConfig {
|
|
2793
2983
|
screenShareStreamId: string;
|
|
2794
2984
|
}
|
|
2985
|
+
interface CohostTypeLayoutExtra {
|
|
2986
|
+
isZoomLayout: number;
|
|
2987
|
+
offsetY: number;
|
|
2988
|
+
scene: number;
|
|
2989
|
+
localLayoutOnly: boolean;
|
|
2990
|
+
isEnlargeMode: number;
|
|
2991
|
+
disableMatchComponent: boolean;
|
|
2992
|
+
rematchSpotId: number;
|
|
2993
|
+
}
|
|
2994
|
+
interface CohostTypeLayoutNonSeiExtra {}
|
|
2995
|
+
interface CohostTypeSpotExtra {
|
|
2996
|
+
isEnlarged: boolean;
|
|
2997
|
+
contentType: number;
|
|
2998
|
+
preEnlargeSpotId: number;
|
|
2999
|
+
}
|
|
3000
|
+
interface CohostTypeSpotNonSeiExtra {}
|
|
2795
3001
|
interface CohostUserInfo {
|
|
2796
3002
|
permissionType: string;
|
|
2797
3003
|
sourceType: SourceType;
|
|
@@ -2828,11 +3034,29 @@ interface GuestUserInfo {
|
|
|
2828
3034
|
linkmicIdStr: string;
|
|
2829
3035
|
isEnigma: boolean;
|
|
2830
3036
|
}
|
|
3037
|
+
interface LayoutData {
|
|
3038
|
+
layout: LayoutState | undefined;
|
|
3039
|
+
spotList: SpotInfo[];
|
|
3040
|
+
version: string;
|
|
3041
|
+
groupChannelId: string;
|
|
3042
|
+
uiPos: PosIdentity[];
|
|
3043
|
+
}
|
|
2831
3044
|
interface LayoutState {
|
|
2832
3045
|
layoutId: string;
|
|
2833
3046
|
layoutKey: string;
|
|
2834
3047
|
multiGuestLayoutExtra: MultiGuestLayoutExtra | undefined;
|
|
2835
3048
|
multiGuestLayoutNonSeiExtra: MultiGuestLayoutNonSeiExtra | undefined;
|
|
3049
|
+
cohostLayoutExtra: CohostTypeLayoutExtra | undefined;
|
|
3050
|
+
cohostLayoutNonSeiExtra: CohostTypeLayoutNonSeiExtra | undefined;
|
|
3051
|
+
}
|
|
3052
|
+
interface LinkEnvelopeMessagePayload {
|
|
3053
|
+
messageType: number;
|
|
3054
|
+
resolutionDemandPayload: ResolutionDemandPayload | undefined;
|
|
3055
|
+
}
|
|
3056
|
+
interface LinkUserIdentity {
|
|
3057
|
+
player: Player | undefined;
|
|
3058
|
+
linkMicId: string;
|
|
3059
|
+
channelId: string;
|
|
2836
3060
|
}
|
|
2837
3061
|
interface LinkUserState {
|
|
2838
3062
|
user: Player | undefined;
|
|
@@ -2886,6 +3110,20 @@ interface PosIdentity {
|
|
|
2886
3110
|
type: PosIdentityType;
|
|
2887
3111
|
value: string;
|
|
2888
3112
|
}
|
|
3113
|
+
interface PosIdentityExtra {
|
|
3114
|
+
contentLinkmicID: string;
|
|
3115
|
+
}
|
|
3116
|
+
interface ResolutionDemandPayload {
|
|
3117
|
+
action: number;
|
|
3118
|
+
widthRatio: number;
|
|
3119
|
+
heightRatio: number;
|
|
3120
|
+
configId: string;
|
|
3121
|
+
layoutKey: string;
|
|
3122
|
+
spotId: string;
|
|
3123
|
+
canvasWidth: string;
|
|
3124
|
+
canvasHeight: string;
|
|
3125
|
+
timestampMs: string;
|
|
3126
|
+
}
|
|
2889
3127
|
interface SocialGameLayoutExtra {
|
|
2890
3128
|
gameId: number;
|
|
2891
3129
|
gameJustDanceStatus: number;
|
|
@@ -2912,33 +3150,45 @@ interface SpotInfo {
|
|
|
2912
3150
|
posIdentity: PosIdentity | undefined;
|
|
2913
3151
|
multiGuestSpotExtra: MultiGuestSpotExtra | undefined;
|
|
2914
3152
|
multiGuestSpotNonSeiExtra: MultiGuestSpotNonSeiExtra | undefined;
|
|
2915
|
-
|
|
2916
|
-
|
|
2917
|
-
|
|
2918
|
-
|
|
2919
|
-
declare const
|
|
2920
|
-
declare const
|
|
2921
|
-
declare const
|
|
2922
|
-
declare const
|
|
2923
|
-
declare const
|
|
2924
|
-
declare const
|
|
2925
|
-
declare const
|
|
2926
|
-
declare const
|
|
2927
|
-
declare const
|
|
2928
|
-
declare const
|
|
2929
|
-
declare const
|
|
2930
|
-
declare const
|
|
2931
|
-
declare const
|
|
2932
|
-
declare const
|
|
2933
|
-
declare const
|
|
2934
|
-
declare const
|
|
2935
|
-
declare const
|
|
2936
|
-
declare const
|
|
2937
|
-
declare const
|
|
2938
|
-
declare const
|
|
2939
|
-
declare const
|
|
2940
|
-
declare const
|
|
2941
|
-
|
|
3153
|
+
cohostSpotExtra: CohostTypeSpotExtra | undefined;
|
|
3154
|
+
cohostSpotNonSeiExtra: CohostTypeSpotNonSeiExtra | undefined;
|
|
3155
|
+
posIdentityExtra: PosIdentityExtra | undefined;
|
|
3156
|
+
}
|
|
3157
|
+
declare const AnchorLayoutSetting: MessageFns$35<AnchorLayoutSetting>;
|
|
3158
|
+
declare const AnchorLayoutStyleSetting: MessageFns$35<AnchorLayoutStyleSetting>;
|
|
3159
|
+
declare const AnchorPanelLayoutTypeSetting: MessageFns$35<AnchorPanelLayoutTypeSetting>;
|
|
3160
|
+
declare const AvatarState: MessageFns$35<AvatarState>;
|
|
3161
|
+
declare const BackGroundImageState: MessageFns$35<BackGroundImageState>;
|
|
3162
|
+
declare const CohostMode: MessageFns$35<CohostMode>;
|
|
3163
|
+
declare const CohostStreamConfig: MessageFns$35<CohostStreamConfig>;
|
|
3164
|
+
declare const CohostTypeLayoutExtra: MessageFns$35<CohostTypeLayoutExtra>;
|
|
3165
|
+
declare const CohostTypeLayoutNonSeiExtra: MessageFns$35<CohostTypeLayoutNonSeiExtra>;
|
|
3166
|
+
declare const CohostTypeSpotExtra: MessageFns$35<CohostTypeSpotExtra>;
|
|
3167
|
+
declare const CohostTypeSpotNonSeiExtra: MessageFns$35<CohostTypeSpotNonSeiExtra>;
|
|
3168
|
+
declare const CohostUserInfo: MessageFns$35<CohostUserInfo>;
|
|
3169
|
+
declare const ContentPosition: MessageFns$35<ContentPosition>;
|
|
3170
|
+
declare const GroupPlayer: MessageFns$35<GroupPlayer>;
|
|
3171
|
+
declare const GuestUserInfo: MessageFns$35<GuestUserInfo>;
|
|
3172
|
+
declare const LayoutData: MessageFns$35<LayoutData>;
|
|
3173
|
+
declare const LayoutState: MessageFns$35<LayoutState>;
|
|
3174
|
+
declare const LinkEnvelopeMessagePayload: MessageFns$35<LinkEnvelopeMessagePayload>;
|
|
3175
|
+
declare const LinkUserIdentity: MessageFns$35<LinkUserIdentity>;
|
|
3176
|
+
declare const LinkUserState: MessageFns$35<LinkUserState>;
|
|
3177
|
+
declare const LinkerMediaChangeOperator: MessageFns$35<LinkerMediaChangeOperator>;
|
|
3178
|
+
declare const MigrationDetails: MessageFns$35<MigrationDetails>;
|
|
3179
|
+
declare const MultiGuestLayoutExtra: MessageFns$35<MultiGuestLayoutExtra>;
|
|
3180
|
+
declare const MultiGuestLayoutNonSeiExtra: MessageFns$35<MultiGuestLayoutNonSeiExtra>;
|
|
3181
|
+
declare const MultiGuestSpotExtra: MessageFns$35<MultiGuestSpotExtra>;
|
|
3182
|
+
declare const MultiGuestSpotNonSeiExtra: MessageFns$35<MultiGuestSpotNonSeiExtra>;
|
|
3183
|
+
declare const PosIdentity: MessageFns$35<PosIdentity>;
|
|
3184
|
+
declare const PosIdentityExtra: MessageFns$35<PosIdentityExtra>;
|
|
3185
|
+
declare const ResolutionDemandPayload: MessageFns$35<ResolutionDemandPayload>;
|
|
3186
|
+
declare const SocialGameLayoutExtra: MessageFns$35<SocialGameLayoutExtra>;
|
|
3187
|
+
declare const SocialGameLayoutNonSeiExtra: MessageFns$35<SocialGameLayoutNonSeiExtra>;
|
|
3188
|
+
declare const SocialGameUserSpotExtra: MessageFns$35<SocialGameUserSpotExtra>;
|
|
3189
|
+
declare const SocialGameUserSpotNonSeiExtra: MessageFns$35<SocialGameUserSpotNonSeiExtra>;
|
|
3190
|
+
declare const SpotInfo: MessageFns$35<SpotInfo>;
|
|
3191
|
+
interface MessageFns$35<T> {
|
|
2942
3192
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
2943
3193
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
2944
3194
|
}
|
|
@@ -3104,31 +3354,31 @@ interface ReplyInviteContent {
|
|
|
3104
3354
|
spotList: SpotInfo[];
|
|
3105
3355
|
inviteeLinkerSessionId: string;
|
|
3106
3356
|
}
|
|
3107
|
-
declare const AllListUser: MessageFns$
|
|
3108
|
-
declare const ApplyContent: MessageFns$
|
|
3109
|
-
declare const ByteRTCExtInfo: MessageFns$
|
|
3110
|
-
declare const CancelApplyContent: MessageFns$
|
|
3111
|
-
declare const CancelInviteContent: MessageFns$
|
|
3112
|
-
declare const CreateChannelContent: MessageFns$
|
|
3113
|
-
declare const DSLConfig: MessageFns$
|
|
3114
|
-
declare const FinishChannelContent: MessageFns$
|
|
3115
|
-
declare const InviteContent: MessageFns$
|
|
3116
|
-
declare const JoinDirectContent: MessageFns$
|
|
3117
|
-
declare const KickOutContent: MessageFns$
|
|
3118
|
-
declare const LeaveContent: MessageFns$
|
|
3119
|
-
declare const LinkLayerListUser: MessageFns$
|
|
3120
|
-
declare const LinkListChangeContent: MessageFns$
|
|
3121
|
-
declare const PermitApplyContent: MessageFns$
|
|
3122
|
-
declare const RTCBitRateMap: MessageFns$
|
|
3123
|
-
declare const RTCEngineConfig: MessageFns$
|
|
3124
|
-
declare const RTCExtraInfo: MessageFns$
|
|
3125
|
-
declare const RTCInfoExtra: MessageFns$
|
|
3126
|
-
declare const RTCLiveVideoParam: MessageFns$
|
|
3127
|
-
declare const RTCMixBase: MessageFns$
|
|
3128
|
-
declare const RTCOther: MessageFns$
|
|
3129
|
-
declare const RTCVideoParam: MessageFns$
|
|
3130
|
-
declare const ReplyInviteContent: MessageFns$
|
|
3131
|
-
interface MessageFns$
|
|
3357
|
+
declare const AllListUser: MessageFns$34<AllListUser>;
|
|
3358
|
+
declare const ApplyContent: MessageFns$34<ApplyContent>;
|
|
3359
|
+
declare const ByteRTCExtInfo: MessageFns$34<ByteRTCExtInfo>;
|
|
3360
|
+
declare const CancelApplyContent: MessageFns$34<CancelApplyContent>;
|
|
3361
|
+
declare const CancelInviteContent: MessageFns$34<CancelInviteContent>;
|
|
3362
|
+
declare const CreateChannelContent: MessageFns$34<CreateChannelContent>;
|
|
3363
|
+
declare const DSLConfig: MessageFns$34<DSLConfig>;
|
|
3364
|
+
declare const FinishChannelContent: MessageFns$34<FinishChannelContent>;
|
|
3365
|
+
declare const InviteContent: MessageFns$34<InviteContent>;
|
|
3366
|
+
declare const JoinDirectContent: MessageFns$34<JoinDirectContent>;
|
|
3367
|
+
declare const KickOutContent: MessageFns$34<KickOutContent>;
|
|
3368
|
+
declare const LeaveContent: MessageFns$34<LeaveContent>;
|
|
3369
|
+
declare const LinkLayerListUser: MessageFns$34<LinkLayerListUser>;
|
|
3370
|
+
declare const LinkListChangeContent: MessageFns$34<LinkListChangeContent>;
|
|
3371
|
+
declare const PermitApplyContent: MessageFns$34<PermitApplyContent>;
|
|
3372
|
+
declare const RTCBitRateMap: MessageFns$34<RTCBitRateMap>;
|
|
3373
|
+
declare const RTCEngineConfig: MessageFns$34<RTCEngineConfig>;
|
|
3374
|
+
declare const RTCExtraInfo: MessageFns$34<RTCExtraInfo>;
|
|
3375
|
+
declare const RTCInfoExtra: MessageFns$34<RTCInfoExtra>;
|
|
3376
|
+
declare const RTCLiveVideoParam: MessageFns$34<RTCLiveVideoParam>;
|
|
3377
|
+
declare const RTCMixBase: MessageFns$34<RTCMixBase>;
|
|
3378
|
+
declare const RTCOther: MessageFns$34<RTCOther>;
|
|
3379
|
+
declare const RTCVideoParam: MessageFns$34<RTCVideoParam>;
|
|
3380
|
+
declare const ReplyInviteContent: MessageFns$34<ReplyInviteContent>;
|
|
3381
|
+
interface MessageFns$34<T> {
|
|
3132
3382
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
3133
3383
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
3134
3384
|
}
|
|
@@ -3144,8 +3394,8 @@ interface GroupChannelUser {
|
|
|
3144
3394
|
ownerUser: GroupPlayer | undefined;
|
|
3145
3395
|
groupLinkmicId: string;
|
|
3146
3396
|
}
|
|
3147
|
-
declare const GroupChannelUser: MessageFns$
|
|
3148
|
-
interface MessageFns$
|
|
3397
|
+
declare const GroupChannelUser: MessageFns$33<GroupChannelUser>;
|
|
3398
|
+
interface MessageFns$33<T> {
|
|
3149
3399
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
3150
3400
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
3151
3401
|
}
|
|
@@ -3156,8 +3406,8 @@ interface GroupChannelAllUser {
|
|
|
3156
3406
|
user: GroupChannelUser[];
|
|
3157
3407
|
contentVersion: string;
|
|
3158
3408
|
}
|
|
3159
|
-
declare const GroupChannelAllUser: MessageFns$
|
|
3160
|
-
interface MessageFns$
|
|
3409
|
+
declare const GroupChannelAllUser: MessageFns$32<GroupChannelAllUser>;
|
|
3410
|
+
interface MessageFns$32<T> {
|
|
3161
3411
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
3162
3412
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
3163
3413
|
}
|
|
@@ -3220,17 +3470,17 @@ interface TextPieceUser {
|
|
|
3220
3470
|
user: User | undefined;
|
|
3221
3471
|
withColon: boolean;
|
|
3222
3472
|
}
|
|
3223
|
-
declare const PatternRef: MessageFns$
|
|
3224
|
-
declare const PatternRef_KeyGroupsEntry: MessageFns$
|
|
3225
|
-
declare const Text: MessageFns$
|
|
3226
|
-
declare const TextFormat: MessageFns$
|
|
3227
|
-
declare const TextPiece: MessageFns$
|
|
3228
|
-
declare const TextPieceGift: MessageFns$
|
|
3229
|
-
declare const TextPieceHeart: MessageFns$
|
|
3230
|
-
declare const TextPieceImage: MessageFns$
|
|
3231
|
-
declare const TextPiecePatternRef: MessageFns$
|
|
3232
|
-
declare const TextPieceUser: MessageFns$
|
|
3233
|
-
interface MessageFns$
|
|
3473
|
+
declare const PatternRef: MessageFns$31<PatternRef>;
|
|
3474
|
+
declare const PatternRef_KeyGroupsEntry: MessageFns$31<PatternRef_KeyGroupsEntry>;
|
|
3475
|
+
declare const Text: MessageFns$31<Text>;
|
|
3476
|
+
declare const TextFormat: MessageFns$31<TextFormat>;
|
|
3477
|
+
declare const TextPiece: MessageFns$31<TextPiece>;
|
|
3478
|
+
declare const TextPieceGift: MessageFns$31<TextPieceGift>;
|
|
3479
|
+
declare const TextPieceHeart: MessageFns$31<TextPieceHeart>;
|
|
3480
|
+
declare const TextPieceImage: MessageFns$31<TextPieceImage>;
|
|
3481
|
+
declare const TextPiecePatternRef: MessageFns$31<TextPiecePatternRef>;
|
|
3482
|
+
declare const TextPieceUser: MessageFns$31<TextPieceUser>;
|
|
3483
|
+
interface MessageFns$31<T> {
|
|
3234
3484
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
3235
3485
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
3236
3486
|
}
|
|
@@ -3275,11 +3525,11 @@ interface PunishEventInfo {
|
|
|
3275
3525
|
violationUidStr: string;
|
|
3276
3526
|
showReason: string;
|
|
3277
3527
|
}
|
|
3278
|
-
declare const InviteTopHostInfo: MessageFns$
|
|
3279
|
-
declare const LinkmicUserInfo: MessageFns$
|
|
3280
|
-
declare const PerceptionDialogInfo: MessageFns$
|
|
3281
|
-
declare const PunishEventInfo: MessageFns$
|
|
3282
|
-
interface MessageFns$
|
|
3528
|
+
declare const InviteTopHostInfo: MessageFns$30<InviteTopHostInfo>;
|
|
3529
|
+
declare const LinkmicUserInfo: MessageFns$30<LinkmicUserInfo>;
|
|
3530
|
+
declare const PerceptionDialogInfo: MessageFns$30<PerceptionDialogInfo>;
|
|
3531
|
+
declare const PunishEventInfo: MessageFns$30<PunishEventInfo>;
|
|
3532
|
+
interface MessageFns$30<T> {
|
|
3283
3533
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
3284
3534
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
3285
3535
|
}
|
|
@@ -3292,6 +3542,7 @@ interface BaseProtoMessage {
|
|
|
3292
3542
|
msgType: number;
|
|
3293
3543
|
offset: string;
|
|
3294
3544
|
isHistory: boolean;
|
|
3545
|
+
sampleFlag: number;
|
|
3295
3546
|
}
|
|
3296
3547
|
interface CommonMessageData {
|
|
3297
3548
|
method: string;
|
|
@@ -3350,13 +3601,13 @@ interface ProtoMessageFetchResult_RouteParamsEntry {
|
|
|
3350
3601
|
key: string;
|
|
3351
3602
|
value: string;
|
|
3352
3603
|
}
|
|
3353
|
-
declare const BaseProtoMessage: MessageFns$
|
|
3354
|
-
declare const CommonMessageData: MessageFns$
|
|
3355
|
-
declare const LiveMessageID: MessageFns$
|
|
3356
|
-
declare const LiveMessageSEI: MessageFns$
|
|
3357
|
-
declare const ProtoMessageFetchResult: MessageFns$
|
|
3358
|
-
declare const ProtoMessageFetchResult_RouteParamsEntry: MessageFns$
|
|
3359
|
-
interface MessageFns$
|
|
3604
|
+
declare const BaseProtoMessage: MessageFns$29<BaseProtoMessage>;
|
|
3605
|
+
declare const CommonMessageData: MessageFns$29<CommonMessageData>;
|
|
3606
|
+
declare const LiveMessageID: MessageFns$29<LiveMessageID>;
|
|
3607
|
+
declare const LiveMessageSEI: MessageFns$29<LiveMessageSEI>;
|
|
3608
|
+
declare const ProtoMessageFetchResult: MessageFns$29<ProtoMessageFetchResult>;
|
|
3609
|
+
declare const ProtoMessageFetchResult_RouteParamsEntry: MessageFns$29<ProtoMessageFetchResult_RouteParamsEntry>;
|
|
3610
|
+
interface MessageFns$29<T> {
|
|
3360
3611
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
3361
3612
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
3362
3613
|
}
|
|
@@ -3398,6 +3649,22 @@ declare enum BarrageMessageShowType {
|
|
|
3398
3649
|
SHOW_TYPE_FADE_IN_OUT = 1,
|
|
3399
3650
|
UNRECOGNIZED = -1
|
|
3400
3651
|
}
|
|
3652
|
+
declare enum BattleCardMsgType {
|
|
3653
|
+
UNKNOWN_CARD_ACTION = 0,
|
|
3654
|
+
CARD_OBTAIN_GUIDE = 1,
|
|
3655
|
+
USE_CRITICAL_STRIKE_CARD = 2,
|
|
3656
|
+
USE_SMOKE_CARD = 3,
|
|
3657
|
+
AWARD_CARD_NOTICE = 4,
|
|
3658
|
+
USE_EXTRA_TIME_CARD = 5,
|
|
3659
|
+
USE_SPECIAL_EFFECT_CARD = 6,
|
|
3660
|
+
USE_POTION_CARD = 7,
|
|
3661
|
+
USE_WAVE_CARD = 8,
|
|
3662
|
+
SPECIAL_EFFECT_NOTICE = 9,
|
|
3663
|
+
USE_TOP_2_CARD = 10,
|
|
3664
|
+
USE_TOP_3_CARD = 11,
|
|
3665
|
+
USE_VAULT_GLOVE_CARD = 12,
|
|
3666
|
+
UNRECOGNIZED = -1
|
|
3667
|
+
}
|
|
3401
3668
|
declare enum BattleRewardSettleRewardStatus {
|
|
3402
3669
|
REWARD_STATUS_SUCCEED = 0,
|
|
3403
3670
|
REWARD_STATUS_FAILED = 1,
|
|
@@ -3746,6 +4013,7 @@ interface JoinGroupBizContent {
|
|
|
3746
4013
|
abInfos: {
|
|
3747
4014
|
[key: string]: CohostABInfo;
|
|
3748
4015
|
};
|
|
4016
|
+
matchedPreferenceTag: number;
|
|
3749
4017
|
joinGroupMsgExtra: JoinGroupMessageExtra | undefined;
|
|
3750
4018
|
}
|
|
3751
4019
|
interface JoinGroupBizContent_AbInfosEntry {
|
|
@@ -3761,12 +4029,14 @@ interface JoinGroupContent {
|
|
|
3761
4029
|
interface JoinGroupDirectBizContent {
|
|
3762
4030
|
gameplayContent: GamePlayContent | undefined;
|
|
3763
4031
|
randomMatchContent: RandomMatchContent | undefined;
|
|
4032
|
+
skipCancelMatch: boolean;
|
|
3764
4033
|
}
|
|
3765
4034
|
interface JoinGroupDirectContent {
|
|
3766
4035
|
groupExtInfo: RTCExtraInfo[];
|
|
3767
4036
|
groupUser: GroupChannelAllUser | undefined;
|
|
3768
4037
|
migrationDetails: MigrationDetails | undefined;
|
|
3769
4038
|
contentPos: ContentPosition[];
|
|
4039
|
+
crossRoomLayout: LayoutData | undefined;
|
|
3770
4040
|
}
|
|
3771
4041
|
interface JoinGroupMessageExtra {
|
|
3772
4042
|
sourceType: string;
|
|
@@ -3809,6 +4079,11 @@ interface LeaveJoinGroupContent {
|
|
|
3809
4079
|
leaveSource: string;
|
|
3810
4080
|
linkedUserUiPositions: string[];
|
|
3811
4081
|
}
|
|
4082
|
+
interface LinkEnvelopeContent {
|
|
4083
|
+
sender: LinkUserIdentity | undefined;
|
|
4084
|
+
receiver: LinkUserIdentity | undefined;
|
|
4085
|
+
messagePayload: LinkEnvelopeMessagePayload | undefined;
|
|
4086
|
+
}
|
|
3812
4087
|
interface ListChangeBizContent {
|
|
3813
4088
|
userInfos: {
|
|
3814
4089
|
[key: string]: CohostUserInfo;
|
|
@@ -3846,10 +4121,14 @@ interface P2PGroupChangeContent {
|
|
|
3846
4121
|
groupUser: GroupChannelAllUser | undefined;
|
|
3847
4122
|
migrationDetails: MigrationDetails | undefined;
|
|
3848
4123
|
contentPos: ContentPosition[];
|
|
4124
|
+
crossRoomLayout: LayoutData | undefined;
|
|
3849
4125
|
}
|
|
3850
4126
|
interface PermitJoinGroupBizContent {
|
|
3851
4127
|
replyStatus: ReplyStatus;
|
|
3852
4128
|
sourceType: SourceType;
|
|
4129
|
+
skipCancelMatch: boolean;
|
|
4130
|
+
matchedPreferenceTag: number;
|
|
4131
|
+
quickCohostInviteeUserInfo: QuickCohostInviteeUserInfo | undefined;
|
|
3853
4132
|
}
|
|
3854
4133
|
interface PermitJoinGroupContent {
|
|
3855
4134
|
approver: GroupPlayer | undefined;
|
|
@@ -3860,6 +4139,11 @@ interface PermitJoinGroupContent {
|
|
|
3860
4139
|
migrationDetails: MigrationDetails | undefined;
|
|
3861
4140
|
linkedUserUiPositions: string[];
|
|
3862
4141
|
permitGroupType: number;
|
|
4142
|
+
crossRoomLayout: LayoutData | undefined;
|
|
4143
|
+
}
|
|
4144
|
+
interface QuickCohostInviteeUserInfo {
|
|
4145
|
+
avatarThumb: ImageModel | undefined;
|
|
4146
|
+
nickname: string;
|
|
3863
4147
|
}
|
|
3864
4148
|
interface RivalExtra {
|
|
3865
4149
|
userCount: string;
|
|
@@ -3880,6 +4164,7 @@ interface RivalExtra {
|
|
|
3880
4164
|
gameTag: RivalsGameTag | undefined;
|
|
3881
4165
|
giftGalleryBadgeInfo: GiftGalleryBadgeInfo | undefined;
|
|
3882
4166
|
roomId: string;
|
|
4167
|
+
activityBadgeInfo: ActivityBadgeInfo | undefined;
|
|
3883
4168
|
}
|
|
3884
4169
|
interface RivalGuestExtra {
|
|
3885
4170
|
userId: string;
|
|
@@ -3920,44 +4205,46 @@ interface WebcastLinkStateMessage {
|
|
|
3920
4205
|
audioMutedRemoteChannels: string[];
|
|
3921
4206
|
linkerMode: number;
|
|
3922
4207
|
}
|
|
3923
|
-
declare const BizLayoutState: MessageFns$
|
|
3924
|
-
declare const BizSpotExtra: MessageFns$
|
|
3925
|
-
declare const BizSpotInfo: MessageFns$
|
|
3926
|
-
declare const CancelJoinGroupContent: MessageFns$
|
|
3927
|
-
declare const CoHostBizLayoutExtra: MessageFns$
|
|
3928
|
-
declare const CoHostBizSpotExtra: MessageFns$
|
|
3929
|
-
declare const CohostContent: MessageFns$
|
|
3930
|
-
declare const GroupChangeContent: MessageFns$
|
|
3931
|
-
declare const InvitationReorderExtra: MessageFns$
|
|
3932
|
-
declare const JoinGroupBizContent: MessageFns$
|
|
3933
|
-
declare const JoinGroupBizContent_AbInfosEntry: MessageFns$
|
|
3934
|
-
declare const JoinGroupContent: MessageFns$
|
|
3935
|
-
declare const JoinGroupDirectBizContent: MessageFns$
|
|
3936
|
-
declare const JoinGroupDirectContent: MessageFns$
|
|
3937
|
-
declare const JoinGroupMessageExtra: MessageFns$
|
|
3938
|
-
declare const JoinGroupMessageExtra_RivalGuestsMapEntry: MessageFns$
|
|
3939
|
-
declare const JoinRoomDirectBizContent: MessageFns$
|
|
3940
|
-
declare const JoinRoomDirectContent: MessageFns$
|
|
3941
|
-
declare const JustDanceExtra: MessageFns$
|
|
3942
|
-
declare const JustDanceLayoutExtra: MessageFns$
|
|
3943
|
-
declare const KickOutBizContent: MessageFns$
|
|
3944
|
-
declare const LeaveJoinGroupContent: MessageFns$
|
|
3945
|
-
declare const
|
|
3946
|
-
declare const
|
|
3947
|
-
declare const
|
|
3948
|
-
declare const
|
|
3949
|
-
declare const
|
|
3950
|
-
declare const
|
|
3951
|
-
declare const
|
|
3952
|
-
declare const
|
|
3953
|
-
declare const
|
|
3954
|
-
declare const
|
|
3955
|
-
declare const
|
|
3956
|
-
declare const
|
|
3957
|
-
declare const
|
|
3958
|
-
declare const
|
|
3959
|
-
declare const
|
|
3960
|
-
|
|
4208
|
+
declare const BizLayoutState: MessageFns$28<BizLayoutState>;
|
|
4209
|
+
declare const BizSpotExtra: MessageFns$28<BizSpotExtra>;
|
|
4210
|
+
declare const BizSpotInfo: MessageFns$28<BizSpotInfo>;
|
|
4211
|
+
declare const CancelJoinGroupContent: MessageFns$28<CancelJoinGroupContent>;
|
|
4212
|
+
declare const CoHostBizLayoutExtra: MessageFns$28<CoHostBizLayoutExtra>;
|
|
4213
|
+
declare const CoHostBizSpotExtra: MessageFns$28<CoHostBizSpotExtra>;
|
|
4214
|
+
declare const CohostContent: MessageFns$28<CohostContent>;
|
|
4215
|
+
declare const GroupChangeContent: MessageFns$28<GroupChangeContent>;
|
|
4216
|
+
declare const InvitationReorderExtra: MessageFns$28<InvitationReorderExtra>;
|
|
4217
|
+
declare const JoinGroupBizContent: MessageFns$28<JoinGroupBizContent>;
|
|
4218
|
+
declare const JoinGroupBizContent_AbInfosEntry: MessageFns$28<JoinGroupBizContent_AbInfosEntry>;
|
|
4219
|
+
declare const JoinGroupContent: MessageFns$28<JoinGroupContent>;
|
|
4220
|
+
declare const JoinGroupDirectBizContent: MessageFns$28<JoinGroupDirectBizContent>;
|
|
4221
|
+
declare const JoinGroupDirectContent: MessageFns$28<JoinGroupDirectContent>;
|
|
4222
|
+
declare const JoinGroupMessageExtra: MessageFns$28<JoinGroupMessageExtra>;
|
|
4223
|
+
declare const JoinGroupMessageExtra_RivalGuestsMapEntry: MessageFns$28<JoinGroupMessageExtra_RivalGuestsMapEntry>;
|
|
4224
|
+
declare const JoinRoomDirectBizContent: MessageFns$28<JoinRoomDirectBizContent>;
|
|
4225
|
+
declare const JoinRoomDirectContent: MessageFns$28<JoinRoomDirectContent>;
|
|
4226
|
+
declare const JustDanceExtra: MessageFns$28<JustDanceExtra>;
|
|
4227
|
+
declare const JustDanceLayoutExtra: MessageFns$28<JustDanceLayoutExtra>;
|
|
4228
|
+
declare const KickOutBizContent: MessageFns$28<KickOutBizContent>;
|
|
4229
|
+
declare const LeaveJoinGroupContent: MessageFns$28<LeaveJoinGroupContent>;
|
|
4230
|
+
declare const LinkEnvelopeContent: MessageFns$28<LinkEnvelopeContent>;
|
|
4231
|
+
declare const ListChangeBizContent: MessageFns$28<ListChangeBizContent>;
|
|
4232
|
+
declare const ListChangeBizContent_UserInfosEntry: MessageFns$28<ListChangeBizContent_UserInfosEntry>;
|
|
4233
|
+
declare const ListChangeBizContent_AbInfosEntry: MessageFns$28<ListChangeBizContent_AbInfosEntry>;
|
|
4234
|
+
declare const ListChangeBizContent_GuestUserInfosEntry: MessageFns$28<ListChangeBizContent_GuestUserInfosEntry>;
|
|
4235
|
+
declare const MultiGuestBizLayoutExtra: MessageFns$28<MultiGuestBizLayoutExtra>;
|
|
4236
|
+
declare const MultiGuestBizSpotExtra: MessageFns$28<MultiGuestBizSpotExtra>;
|
|
4237
|
+
declare const P2PGroupChangeContent: MessageFns$28<P2PGroupChangeContent>;
|
|
4238
|
+
declare const PermitJoinGroupBizContent: MessageFns$28<PermitJoinGroupBizContent>;
|
|
4239
|
+
declare const PermitJoinGroupContent: MessageFns$28<PermitJoinGroupContent>;
|
|
4240
|
+
declare const QuickCohostInviteeUserInfo: MessageFns$28<QuickCohostInviteeUserInfo>;
|
|
4241
|
+
declare const RivalExtra: MessageFns$28<RivalExtra>;
|
|
4242
|
+
declare const RivalGuestExtra: MessageFns$28<RivalGuestExtra>;
|
|
4243
|
+
declare const RivalGuestExtras: MessageFns$28<RivalGuestExtras>;
|
|
4244
|
+
declare const SoundWareEffectExtra: MessageFns$28<SoundWareEffectExtra>;
|
|
4245
|
+
declare const WebcastLinkMicLayoutStateMessage: MessageFns$28<WebcastLinkMicLayoutStateMessage>;
|
|
4246
|
+
declare const WebcastLinkStateMessage: MessageFns$28<WebcastLinkStateMessage>;
|
|
4247
|
+
interface MessageFns$28<T> {
|
|
3961
4248
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
3962
4249
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
3963
4250
|
}
|
|
@@ -3982,9 +4269,10 @@ interface MultiLiveAnchorPanelSettings {
|
|
|
3982
4269
|
saveAsDefaultLayout: number;
|
|
3983
4270
|
multiGuestAllowCohostInvitation: number;
|
|
3984
4271
|
multiGuestAllowCohostInvitationOnce: number;
|
|
4272
|
+
disableGuestOpenCamera: number;
|
|
3985
4273
|
}
|
|
3986
|
-
declare const MultiLiveAnchorPanelSettings: MessageFns$
|
|
3987
|
-
interface MessageFns$
|
|
4274
|
+
declare const MultiLiveAnchorPanelSettings: MessageFns$27<MultiLiveAnchorPanelSettings>;
|
|
4275
|
+
interface MessageFns$27<T> {
|
|
3988
4276
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
3989
4277
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
3990
4278
|
}
|
|
@@ -4005,11 +4293,13 @@ interface InviteBizContent {
|
|
|
4005
4293
|
operatorLinkAdminType: LinkMicUserAdminType;
|
|
4006
4294
|
inviteeUserInfo: User | undefined;
|
|
4007
4295
|
shareRevenueSetting: LinkmicShareRevenueSetting;
|
|
4296
|
+
shareRevenueSettingStruct: LinkmicShareRevenueSettingStruct | undefined;
|
|
4008
4297
|
}
|
|
4009
4298
|
interface JoinDirectBizContent {
|
|
4010
4299
|
replyImMsgId: string;
|
|
4011
4300
|
outsideRoomInviteSource: MultiGuestOutsideRoomInviteSource;
|
|
4012
4301
|
isFullPositionPreApproved: boolean;
|
|
4302
|
+
mgSourceRole: number;
|
|
4013
4303
|
}
|
|
4014
4304
|
interface MultiLiveContent {
|
|
4015
4305
|
applyBizContent: ApplyBizContent | undefined;
|
|
@@ -4037,14 +4327,14 @@ interface ReplyBizContent {
|
|
|
4037
4327
|
replyUserInfo: User | undefined;
|
|
4038
4328
|
isFullPositionPreApproved: boolean;
|
|
4039
4329
|
}
|
|
4040
|
-
declare const ApplyBizContent: MessageFns$
|
|
4041
|
-
declare const BusinessContent: MessageFns$
|
|
4042
|
-
declare const InviteBizContent: MessageFns$
|
|
4043
|
-
declare const JoinDirectBizContent: MessageFns$
|
|
4044
|
-
declare const MultiLiveContent: MessageFns$
|
|
4045
|
-
declare const PermitBizContent: MessageFns$
|
|
4046
|
-
declare const ReplyBizContent: MessageFns$
|
|
4047
|
-
interface MessageFns$
|
|
4330
|
+
declare const ApplyBizContent: MessageFns$26<ApplyBizContent>;
|
|
4331
|
+
declare const BusinessContent: MessageFns$26<BusinessContent>;
|
|
4332
|
+
declare const InviteBizContent: MessageFns$26<InviteBizContent>;
|
|
4333
|
+
declare const JoinDirectBizContent: MessageFns$26<JoinDirectBizContent>;
|
|
4334
|
+
declare const MultiLiveContent: MessageFns$26<MultiLiveContent>;
|
|
4335
|
+
declare const PermitBizContent: MessageFns$26<PermitBizContent>;
|
|
4336
|
+
declare const ReplyBizContent: MessageFns$26<ReplyBizContent>;
|
|
4337
|
+
interface MessageFns$26<T> {
|
|
4048
4338
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
4049
4339
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
4050
4340
|
}
|
|
@@ -4053,8 +4343,8 @@ interface MessageFns$25<T> {
|
|
|
4053
4343
|
interface EnvelopeEnigmaInfo {
|
|
4054
4344
|
isEnigmaMaskOn: boolean;
|
|
4055
4345
|
}
|
|
4056
|
-
declare const EnvelopeEnigmaInfo: MessageFns$
|
|
4057
|
-
interface MessageFns$
|
|
4346
|
+
declare const EnvelopeEnigmaInfo: MessageFns$25<EnvelopeEnigmaInfo>;
|
|
4347
|
+
interface MessageFns$25<T> {
|
|
4058
4348
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
4059
4349
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
4060
4350
|
}
|
|
@@ -4074,34 +4364,145 @@ interface PerceptionSheetInfo {
|
|
|
4074
4364
|
targetRoomId: string;
|
|
4075
4365
|
countDownTime: string;
|
|
4076
4366
|
}
|
|
4077
|
-
declare const PerceptionSheetInfo: MessageFns$
|
|
4367
|
+
declare const PerceptionSheetInfo: MessageFns$24<PerceptionSheetInfo>;
|
|
4368
|
+
interface MessageFns$24<T> {
|
|
4369
|
+
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
4370
|
+
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
4371
|
+
}
|
|
4372
|
+
//#endregion
|
|
4373
|
+
//#region src/generated/node/v3/webcast/model/base/emoji.d.ts
|
|
4374
|
+
interface EmoteModel {
|
|
4375
|
+
emoteId: string;
|
|
4376
|
+
image: ImageModel | undefined;
|
|
4377
|
+
auditStatus: AuditStatus;
|
|
4378
|
+
uuid: string;
|
|
4379
|
+
emoteType: EmoteType;
|
|
4380
|
+
contentSource: ContentSource;
|
|
4381
|
+
emotePrivateType: EmotePrivateType;
|
|
4382
|
+
packageId: string;
|
|
4383
|
+
auditInfo: EmoteModelAuditInfo | undefined;
|
|
4384
|
+
rewardCondition: RewardCondition;
|
|
4385
|
+
emoteUploadInfo: EmoteUploadInfo | undefined;
|
|
4386
|
+
createTime: string;
|
|
4387
|
+
emoteScene: EmoteScene;
|
|
4388
|
+
}
|
|
4389
|
+
interface EmoteWithIndex {
|
|
4390
|
+
index: number;
|
|
4391
|
+
emote: EmoteModel | undefined;
|
|
4392
|
+
}
|
|
4393
|
+
declare const EmoteModel: MessageFns$23<EmoteModel>;
|
|
4394
|
+
declare const EmoteWithIndex: MessageFns$23<EmoteWithIndex>;
|
|
4078
4395
|
interface MessageFns$23<T> {
|
|
4079
4396
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
4080
4397
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
4081
4398
|
}
|
|
4082
|
-
//#endregion
|
|
4083
|
-
//#region src/generated/node/v3/webcast/model/
|
|
4084
|
-
interface
|
|
4085
|
-
|
|
4086
|
-
|
|
4087
|
-
|
|
4088
|
-
|
|
4089
|
-
|
|
4090
|
-
|
|
4091
|
-
|
|
4092
|
-
|
|
4093
|
-
|
|
4094
|
-
|
|
4095
|
-
|
|
4096
|
-
|
|
4097
|
-
|
|
4399
|
+
//#endregion
|
|
4400
|
+
//#region src/generated/node/v3/webcast/model/color_group.d.ts
|
|
4401
|
+
interface Gift {
|
|
4402
|
+
image: ImageModel | undefined;
|
|
4403
|
+
describe: string;
|
|
4404
|
+
duration: number;
|
|
4405
|
+
id: string;
|
|
4406
|
+
forLinkmic: boolean;
|
|
4407
|
+
combo: boolean;
|
|
4408
|
+
type: number;
|
|
4409
|
+
diamondCount: number;
|
|
4410
|
+
isDisplayedOnPanel: boolean;
|
|
4411
|
+
primaryEffectId: string;
|
|
4412
|
+
giftLabelIcon: ImageModel | undefined;
|
|
4413
|
+
name: string;
|
|
4414
|
+
icon: ImageModel | undefined;
|
|
4415
|
+
goldEffect: string;
|
|
4416
|
+
previewImage: ImageModel | undefined;
|
|
4417
|
+
giftPanelBanner: GiftPanelBanner | undefined;
|
|
4418
|
+
isBroadcastGift: boolean;
|
|
4419
|
+
isEffectBefview: boolean;
|
|
4420
|
+
isRandomGift: boolean;
|
|
4421
|
+
isBoxGift: boolean;
|
|
4422
|
+
canPutInGiftBox: boolean;
|
|
4423
|
+
giftBoxInfo: GiftBoxInfo | undefined;
|
|
4424
|
+
trackerParams: {
|
|
4425
|
+
[key: string]: string;
|
|
4426
|
+
};
|
|
4427
|
+
lockInfo: GiftLockInfo | undefined;
|
|
4428
|
+
colorInfos: GiftColorInfo[];
|
|
4429
|
+
giftRankRecommendInfo: string;
|
|
4430
|
+
randomEffectInfo: GiftRandomEffectInfo | undefined;
|
|
4431
|
+
giftSubType: number;
|
|
4432
|
+
giftVerticalScenarios: number[];
|
|
4433
|
+
groupInTab: number;
|
|
4434
|
+
isGalleryGift: boolean;
|
|
4435
|
+
giftSponsorInfo: GiftSponsorInfo | undefined;
|
|
4436
|
+
giftSkins: GiftSkin[];
|
|
4437
|
+
giftLabelType: number;
|
|
4438
|
+
giftTexts: GiftText[];
|
|
4439
|
+
giftSkinToGiftTextsInfos: GiftSkinToGiftTextsInfo[];
|
|
4440
|
+
expirationTimestamp: string;
|
|
4441
|
+
batchGiftInfo: BatchGiftInfo | undefined;
|
|
4442
|
+
isGlobalGift: boolean;
|
|
4443
|
+
disableGalleryBanner: boolean;
|
|
4444
|
+
ugGiftInfo: UGGiftStructInfo | undefined;
|
|
4445
|
+
crossScreenEffectInfo: CrossScreenEffectInfo | undefined;
|
|
4446
|
+
beaconBubble: GiftPanelBeaconBubble | undefined;
|
|
4447
|
+
giftResources: {
|
|
4448
|
+
[key: string]: GiftResource;
|
|
4449
|
+
};
|
|
4450
|
+
resourceId: string;
|
|
4451
|
+
bizExtra: {
|
|
4452
|
+
[key: string]: string;
|
|
4453
|
+
};
|
|
4454
|
+
lynxCrossScreenEffectInfo: LynxCrossScreenEffectInfo | undefined;
|
|
4455
|
+
giftStructHash: string;
|
|
4456
|
+
schemeInfo: SchemeInfo | undefined;
|
|
4457
|
+
seriesInfo: GiftSeriesInfo | undefined;
|
|
4458
|
+
colorPickerInfo: ColorPickerInfo | undefined;
|
|
4459
|
+
musicInfo: MusicGiftInfo | undefined;
|
|
4460
|
+
giftBottomRightLabelIcon: ImageModel | undefined;
|
|
4461
|
+
strategyEvent: string;
|
|
4462
|
+
}
|
|
4463
|
+
interface Gift_TrackerParamsEntry {
|
|
4464
|
+
key: string;
|
|
4465
|
+
value: string;
|
|
4466
|
+
}
|
|
4467
|
+
interface Gift_GiftResourcesEntry {
|
|
4468
|
+
key: string;
|
|
4469
|
+
value: GiftResource | undefined;
|
|
4470
|
+
}
|
|
4471
|
+
interface Gift_BizExtraEntry {
|
|
4472
|
+
key: string;
|
|
4473
|
+
value: string;
|
|
4474
|
+
}
|
|
4475
|
+
interface GiftPanelBanner {
|
|
4476
|
+
displayText: Text | undefined;
|
|
4477
|
+
leftIcon: ImageModel | undefined;
|
|
4478
|
+
schemaUrl: string;
|
|
4479
|
+
bgColorValues: string[];
|
|
4480
|
+
bannerLynxUrl: string;
|
|
4481
|
+
bannerPriority: number;
|
|
4482
|
+
bannerLynxExtra: string;
|
|
4483
|
+
bgImage: ImageModel | undefined;
|
|
4098
4484
|
}
|
|
4099
|
-
interface
|
|
4100
|
-
|
|
4101
|
-
|
|
4485
|
+
interface GiftTrayInfo {
|
|
4486
|
+
trayDynamicImg: ImageModel | undefined;
|
|
4487
|
+
canMirror: boolean;
|
|
4488
|
+
trayNormalBgImg: ImageModel | undefined;
|
|
4489
|
+
trayNormalBgColor: string[];
|
|
4490
|
+
traySmallBgImg: ImageModel | undefined;
|
|
4491
|
+
traySmallBgColor: string[];
|
|
4492
|
+
rightTagText: Text | undefined;
|
|
4493
|
+
rightTagBgImg: ImageModel | undefined;
|
|
4494
|
+
rightTagBgColor: string[];
|
|
4495
|
+
trayNameTextColor: string;
|
|
4496
|
+
trayDescTextColor: string;
|
|
4497
|
+
rightTagJumpSchema: string;
|
|
4498
|
+
giftTrayJumpSchema: string;
|
|
4102
4499
|
}
|
|
4103
|
-
declare const
|
|
4104
|
-
declare const
|
|
4500
|
+
declare const Gift: MessageFns$22<Gift>;
|
|
4501
|
+
declare const Gift_TrackerParamsEntry: MessageFns$22<Gift_TrackerParamsEntry>;
|
|
4502
|
+
declare const Gift_GiftResourcesEntry: MessageFns$22<Gift_GiftResourcesEntry>;
|
|
4503
|
+
declare const Gift_BizExtraEntry: MessageFns$22<Gift_BizExtraEntry>;
|
|
4504
|
+
declare const GiftPanelBanner: MessageFns$22<GiftPanelBanner>;
|
|
4505
|
+
declare const GiftTrayInfo: MessageFns$22<GiftTrayInfo>;
|
|
4105
4506
|
interface MessageFns$22<T> {
|
|
4106
4507
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
4107
4508
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
@@ -4146,7 +4547,7 @@ interface AuctionInfo {
|
|
|
4146
4547
|
versionTime: string;
|
|
4147
4548
|
startTime: string;
|
|
4148
4549
|
endTime: string;
|
|
4149
|
-
auctionWinner: UserInfo | undefined;
|
|
4550
|
+
auctionWinner: UserInfo$1 | undefined;
|
|
4150
4551
|
winnerBidPrice: PriceItem | undefined;
|
|
4151
4552
|
nextBidPrice: PriceItem | undefined;
|
|
4152
4553
|
suffix: string;
|
|
@@ -4163,6 +4564,24 @@ interface AuctionInfo {
|
|
|
4163
4564
|
auctionTextTypeInt: number;
|
|
4164
4565
|
drawingStateTextTypeInt: number;
|
|
4165
4566
|
versionTimeStr: string;
|
|
4567
|
+
traceTimeMap: {
|
|
4568
|
+
[key: string]: string;
|
|
4569
|
+
};
|
|
4570
|
+
easterEgg: EasterEgg | undefined;
|
|
4571
|
+
auctionKnockPerformMiddleTextType: number;
|
|
4572
|
+
auctionKnockPerformBottomRightTextType: number;
|
|
4573
|
+
auctionIdStr: string;
|
|
4574
|
+
auctionConfigIdStr: string;
|
|
4575
|
+
auctionCardBottomTextType: number;
|
|
4576
|
+
auctionCardTitleTextType: number;
|
|
4577
|
+
surpriseSetRemainItemCount: number;
|
|
4578
|
+
auctionEventTypeInt: number;
|
|
4579
|
+
bidPanel: BidPanel | undefined;
|
|
4580
|
+
lynxCardInfo: string;
|
|
4581
|
+
}
|
|
4582
|
+
interface AuctionInfo_TraceTimeMapEntry {
|
|
4583
|
+
key: string;
|
|
4584
|
+
value: string;
|
|
4166
4585
|
}
|
|
4167
4586
|
interface AuctionWinnerPopup {
|
|
4168
4587
|
auctionId: string;
|
|
@@ -4176,6 +4595,9 @@ interface AuctionWinnerPopup {
|
|
|
4176
4595
|
interface BagIndex {
|
|
4177
4596
|
value: number;
|
|
4178
4597
|
}
|
|
4598
|
+
interface BidPanel {
|
|
4599
|
+
bidBtnTextTypeInt: number;
|
|
4600
|
+
}
|
|
4179
4601
|
interface CarouselCfg {
|
|
4180
4602
|
intervalMs: string;
|
|
4181
4603
|
textStatusList: number[];
|
|
@@ -4204,6 +4626,14 @@ interface DispersionParam {
|
|
|
4204
4626
|
maxDelayMs: string;
|
|
4205
4627
|
minDelayMs: string;
|
|
4206
4628
|
}
|
|
4629
|
+
interface EasterEgg {
|
|
4630
|
+
winnerRank: string;
|
|
4631
|
+
winnerRankTextType: number;
|
|
4632
|
+
winnerRoomWinCnt: string;
|
|
4633
|
+
winnerRoomWinCntTextType: number;
|
|
4634
|
+
winnerRankTextTypeTail: number;
|
|
4635
|
+
winnerRoomWinCntTextTypeTail: number;
|
|
4636
|
+
}
|
|
4207
4637
|
interface EcomLiveElementActions {
|
|
4208
4638
|
atomActions: AtomAction[];
|
|
4209
4639
|
version: string;
|
|
@@ -4213,12 +4643,20 @@ interface ExtendAuctionCfg {
|
|
|
4213
4643
|
shouldExtend: boolean;
|
|
4214
4644
|
extendAuctionTime: string;
|
|
4215
4645
|
}
|
|
4646
|
+
interface FlashSaleEnhancementInfo {
|
|
4647
|
+
stockShowStatus: number;
|
|
4648
|
+
buyerInfos: UserInfo$1[];
|
|
4649
|
+
enhancementTextInfo: EnhancementTextInfo | undefined;
|
|
4650
|
+
}
|
|
4216
4651
|
interface LiveFlashSaleInfo {
|
|
4217
4652
|
activityId: string;
|
|
4218
4653
|
type: number;
|
|
4219
4654
|
status: number;
|
|
4220
4655
|
stockStatus: number;
|
|
4221
4656
|
availableStock: number;
|
|
4657
|
+
totalStock: number;
|
|
4658
|
+
enhancementInfo: FlashSaleEnhancementInfo | undefined;
|
|
4659
|
+
pdpViewerCount: number;
|
|
4222
4660
|
}
|
|
4223
4661
|
interface MsgMeta {
|
|
4224
4662
|
sourceOperateMs: string;
|
|
@@ -4299,7 +4737,7 @@ interface Tag {
|
|
|
4299
4737
|
interface Title {
|
|
4300
4738
|
text: string;
|
|
4301
4739
|
}
|
|
4302
|
-
interface UserInfo {
|
|
4740
|
+
interface UserInfo$1 {
|
|
4303
4741
|
userId: string;
|
|
4304
4742
|
nickName: string;
|
|
4305
4743
|
avatar: ImageModel | undefined;
|
|
@@ -4316,15 +4754,19 @@ interface VoucherItem {
|
|
|
4316
4754
|
declare const AtmosphereInfo: MessageFns$21<AtmosphereInfo>;
|
|
4317
4755
|
declare const AtomAction: MessageFns$21<AtomAction>;
|
|
4318
4756
|
declare const AuctionInfo: MessageFns$21<AuctionInfo>;
|
|
4757
|
+
declare const AuctionInfo_TraceTimeMapEntry: MessageFns$21<AuctionInfo_TraceTimeMapEntry>;
|
|
4319
4758
|
declare const AuctionWinnerPopup: MessageFns$21<AuctionWinnerPopup>;
|
|
4320
4759
|
declare const BagIndex: MessageFns$21<BagIndex>;
|
|
4760
|
+
declare const BidPanel: MessageFns$21<BidPanel>;
|
|
4321
4761
|
declare const CarouselCfg: MessageFns$21<CarouselCfg>;
|
|
4322
4762
|
declare const CommerceInfo: MessageFns$21<CommerceInfo>;
|
|
4323
4763
|
declare const CommerceInfo_ProductInfoEntry: MessageFns$21<CommerceInfo_ProductInfoEntry>;
|
|
4324
4764
|
declare const CommerceInfo_VoucherInfoEntry: MessageFns$21<CommerceInfo_VoucherInfoEntry>;
|
|
4325
4765
|
declare const DispersionParam: MessageFns$21<DispersionParam>;
|
|
4766
|
+
declare const EasterEgg: MessageFns$21<EasterEgg>;
|
|
4326
4767
|
declare const EcomLiveElementActions: MessageFns$21<EcomLiveElementActions>;
|
|
4327
4768
|
declare const ExtendAuctionCfg: MessageFns$21<ExtendAuctionCfg>;
|
|
4769
|
+
declare const FlashSaleEnhancementInfo: MessageFns$21<FlashSaleEnhancementInfo>;
|
|
4328
4770
|
declare const LiveFlashSaleInfo: MessageFns$21<LiveFlashSaleInfo>;
|
|
4329
4771
|
declare const MsgMeta: MessageFns$21<MsgMeta>;
|
|
4330
4772
|
declare const OecLiveShoppingMessageV2: MessageFns$21<OecLiveShoppingMessageV2>;
|
|
@@ -4339,7 +4781,7 @@ declare const ScrollElement: MessageFns$21<ScrollElement>;
|
|
|
4339
4781
|
declare const ShopBrandLogo: MessageFns$21<ShopBrandLogo>;
|
|
4340
4782
|
declare const Tag: MessageFns$21<Tag>;
|
|
4341
4783
|
declare const Title: MessageFns$21<Title>;
|
|
4342
|
-
declare const UserInfo: MessageFns$21<UserInfo>;
|
|
4784
|
+
declare const UserInfo$1: MessageFns$21<UserInfo$1>;
|
|
4343
4785
|
declare const VoucherItem: MessageFns$21<VoucherItem>;
|
|
4344
4786
|
interface MessageFns$21<T> {
|
|
4345
4787
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
@@ -4363,120 +4805,32 @@ interface MessageFns$20<T> {
|
|
|
4363
4805
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
4364
4806
|
}
|
|
4365
4807
|
//#endregion
|
|
4366
|
-
//#region src/generated/node/v3/webcast/model/gift.d.ts
|
|
4367
|
-
interface
|
|
4368
|
-
|
|
4369
|
-
|
|
4370
|
-
|
|
4371
|
-
id: string;
|
|
4372
|
-
forLinkmic: boolean;
|
|
4373
|
-
combo: boolean;
|
|
4374
|
-
type: number;
|
|
4375
|
-
diamondCount: number;
|
|
4376
|
-
isDisplayedOnPanel: boolean;
|
|
4377
|
-
primaryEffectId: string;
|
|
4378
|
-
giftLabelIcon: ImageModel | undefined;
|
|
4379
|
-
name: string;
|
|
4380
|
-
icon: ImageModel | undefined;
|
|
4381
|
-
goldEffect: string;
|
|
4382
|
-
previewImage: ImageModel | undefined;
|
|
4383
|
-
giftPanelBanner: GiftPanelBanner | undefined;
|
|
4384
|
-
isBroadcastGift: boolean;
|
|
4385
|
-
isEffectBefview: boolean;
|
|
4386
|
-
isRandomGift: boolean;
|
|
4387
|
-
isBoxGift: boolean;
|
|
4388
|
-
canPutInGiftBox: boolean;
|
|
4389
|
-
giftBoxInfo: GiftBoxInfo | undefined;
|
|
4390
|
-
trackerParams: {
|
|
4391
|
-
[key: string]: string;
|
|
4392
|
-
};
|
|
4393
|
-
lockInfo: GiftLockInfo | undefined;
|
|
4394
|
-
colorInfos: GiftColorInfo[];
|
|
4395
|
-
giftRankRecommendInfo: string;
|
|
4396
|
-
randomEffectInfo: GiftRandomEffectInfo | undefined;
|
|
4397
|
-
giftSubType: number;
|
|
4398
|
-
giftVerticalScenarios: number[];
|
|
4399
|
-
groupInTab: number;
|
|
4400
|
-
isGalleryGift: boolean;
|
|
4401
|
-
giftSponsorInfo: GiftSponsorInfo | undefined;
|
|
4402
|
-
giftSkins: GiftSkin[];
|
|
4403
|
-
giftLabelType: number;
|
|
4404
|
-
giftTexts: GiftText[];
|
|
4405
|
-
giftSkinToGiftTextsInfos: GiftSkinToGiftTextsInfo[];
|
|
4406
|
-
expirationTimestamp: string;
|
|
4407
|
-
batchGiftInfo: BatchGiftInfo | undefined;
|
|
4408
|
-
isGlobalGift: boolean;
|
|
4409
|
-
disableGalleryBanner: boolean;
|
|
4410
|
-
ugGiftInfo: UGGiftStructInfo | undefined;
|
|
4411
|
-
crossScreenEffectInfo: CrossScreenEffectInfo | undefined;
|
|
4412
|
-
beaconBubble: GiftPanelBeaconBubble | undefined;
|
|
4413
|
-
giftResources: {
|
|
4414
|
-
[key: string]: GiftResource;
|
|
4415
|
-
};
|
|
4416
|
-
resourceId: string;
|
|
4417
|
-
bizExtra: {
|
|
4418
|
-
[key: string]: string;
|
|
4419
|
-
};
|
|
4420
|
-
lynxCrossScreenEffectInfo: LynxCrossScreenEffectInfo | undefined;
|
|
4421
|
-
giftStructHash: string;
|
|
4422
|
-
schemeInfo: SchemeInfo | undefined;
|
|
4423
|
-
seriesInfo: GiftSeriesInfo | undefined;
|
|
4424
|
-
strategyEvent: string;
|
|
4425
|
-
}
|
|
4426
|
-
interface Gift_TrackerParamsEntry {
|
|
4427
|
-
key: string;
|
|
4428
|
-
value: string;
|
|
4429
|
-
}
|
|
4430
|
-
interface Gift_GiftResourcesEntry {
|
|
4431
|
-
key: string;
|
|
4432
|
-
value: GiftResource | undefined;
|
|
4433
|
-
}
|
|
4434
|
-
interface Gift_BizExtraEntry {
|
|
4435
|
-
key: string;
|
|
4436
|
-
value: string;
|
|
4437
|
-
}
|
|
4438
|
-
interface GiftPanelBanner {
|
|
4439
|
-
displayText: Text | undefined;
|
|
4440
|
-
leftIcon: ImageModel | undefined;
|
|
4441
|
-
schemaUrl: string;
|
|
4442
|
-
bgColorValues: string[];
|
|
4443
|
-
bannerLynxUrl: string;
|
|
4444
|
-
bannerPriority: number;
|
|
4445
|
-
bannerLynxExtra: string;
|
|
4446
|
-
bgImage: ImageModel | undefined;
|
|
4447
|
-
}
|
|
4448
|
-
interface GiftTrayInfo {
|
|
4449
|
-
trayDynamicImg: ImageModel | undefined;
|
|
4450
|
-
canMirror: boolean;
|
|
4451
|
-
trayNormalBgImg: ImageModel | undefined;
|
|
4452
|
-
trayNormalBgColor: string[];
|
|
4453
|
-
traySmallBgImg: ImageModel | undefined;
|
|
4454
|
-
traySmallBgColor: string[];
|
|
4455
|
-
rightTagText: Text | undefined;
|
|
4456
|
-
rightTagBgImg: ImageModel | undefined;
|
|
4457
|
-
rightTagBgColor: string[];
|
|
4458
|
-
trayNameTextColor: string;
|
|
4459
|
-
trayDescTextColor: string;
|
|
4460
|
-
rightTagJumpSchema: string;
|
|
4461
|
-
giftTrayJumpSchema: string;
|
|
4808
|
+
//#region src/generated/node/v3/webcast/model/gift/model_asset_bundle.d.ts
|
|
4809
|
+
interface AssetBundle {
|
|
4810
|
+
assets: AssetsModel[];
|
|
4811
|
+
prefabBundle: PrefabBundle | undefined;
|
|
4812
|
+
streamEffectSpec: GiftEffectStreamSpec | undefined;
|
|
4462
4813
|
}
|
|
4463
|
-
declare const
|
|
4464
|
-
declare const Gift_TrackerParamsEntry: MessageFns$19<Gift_TrackerParamsEntry>;
|
|
4465
|
-
declare const Gift_GiftResourcesEntry: MessageFns$19<Gift_GiftResourcesEntry>;
|
|
4466
|
-
declare const Gift_BizExtraEntry: MessageFns$19<Gift_BizExtraEntry>;
|
|
4467
|
-
declare const GiftPanelBanner: MessageFns$19<GiftPanelBanner>;
|
|
4468
|
-
declare const GiftTrayInfo: MessageFns$19<GiftTrayInfo>;
|
|
4814
|
+
declare const AssetBundle: MessageFns$19<AssetBundle>;
|
|
4469
4815
|
interface MessageFns$19<T> {
|
|
4470
4816
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
4471
4817
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
4472
4818
|
}
|
|
4473
4819
|
//#endregion
|
|
4474
|
-
//#region src/generated/node/v3/webcast/model/gift/
|
|
4475
|
-
interface
|
|
4820
|
+
//#region src/generated/node/v3/webcast/model/gift/model_gift_effect.d.ts
|
|
4821
|
+
interface GiftEffect {
|
|
4476
4822
|
assets: AssetsModel[];
|
|
4477
|
-
|
|
4823
|
+
specs: GiftEffectSpecs | undefined;
|
|
4824
|
+
eventTrackingParams: {
|
|
4825
|
+
[key: string]: string;
|
|
4826
|
+
};
|
|
4827
|
+
}
|
|
4828
|
+
interface GiftEffect_EventTrackingParamsEntry {
|
|
4829
|
+
key: string;
|
|
4830
|
+
value: string;
|
|
4478
4831
|
}
|
|
4479
|
-
declare const
|
|
4832
|
+
declare const GiftEffect: MessageFns$18<GiftEffect>;
|
|
4833
|
+
declare const GiftEffect_EventTrackingParamsEntry: MessageFns$18<GiftEffect_EventTrackingParamsEntry>;
|
|
4480
4834
|
interface MessageFns$18<T> {
|
|
4481
4835
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
4482
4836
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
@@ -4518,6 +4872,15 @@ interface MessageFns$16<T> {
|
|
|
4518
4872
|
}
|
|
4519
4873
|
//#endregion
|
|
4520
4874
|
//#region src/generated/node/v3/webcast/model/live_match.d.ts
|
|
4875
|
+
interface AnchorGiftModeMetaMap {
|
|
4876
|
+
anchorGiftModeMetas: {
|
|
4877
|
+
[key: string]: GiftModeMetaList;
|
|
4878
|
+
};
|
|
4879
|
+
}
|
|
4880
|
+
interface AnchorGiftModeMetaMap_AnchorGiftModeMetasEntry {
|
|
4881
|
+
key: string;
|
|
4882
|
+
value: GiftModeMetaList | undefined;
|
|
4883
|
+
}
|
|
4521
4884
|
interface AnchorMatchSettings {
|
|
4522
4885
|
enableAiCommentary: boolean;
|
|
4523
4886
|
}
|
|
@@ -4626,6 +4989,54 @@ interface BestTeammateRelation {
|
|
|
4626
4989
|
interface CohostContentGuideInfo {
|
|
4627
4990
|
recommendedBattleType: number;
|
|
4628
4991
|
}
|
|
4992
|
+
interface CommonCardInfo {
|
|
4993
|
+
cardNameKey: string;
|
|
4994
|
+
cardImage: ImageModel | undefined;
|
|
4995
|
+
sendTimeSec: string;
|
|
4996
|
+
sendUser: BattleUserInfo | undefined;
|
|
4997
|
+
effectLastDuration: string;
|
|
4998
|
+
ruleUrl: string;
|
|
4999
|
+
effectTimeSec: string;
|
|
5000
|
+
toAnchorId: string;
|
|
5001
|
+
toAnchorIdStr: string;
|
|
5002
|
+
}
|
|
5003
|
+
interface CommunityActiveDecoration {
|
|
5004
|
+
decorationId: string;
|
|
5005
|
+
slotType: number;
|
|
5006
|
+
images: {
|
|
5007
|
+
[key: number]: ImageModel;
|
|
5008
|
+
};
|
|
5009
|
+
}
|
|
5010
|
+
interface CommunityActiveDecoration_ImagesEntry {
|
|
5011
|
+
key: number;
|
|
5012
|
+
value: ImageModel | undefined;
|
|
5013
|
+
}
|
|
5014
|
+
interface CommunityHeartMeInfo {
|
|
5015
|
+
slots: {
|
|
5016
|
+
[key: number]: CommunityActiveDecoration;
|
|
5017
|
+
};
|
|
5018
|
+
thrownItemImage: ImageModel | undefined;
|
|
5019
|
+
anchorCommunityLevel: string;
|
|
5020
|
+
}
|
|
5021
|
+
interface CommunityHeartMeInfo_SlotsEntry {
|
|
5022
|
+
key: number;
|
|
5023
|
+
value: CommunityActiveDecoration | undefined;
|
|
5024
|
+
}
|
|
5025
|
+
interface CriticalStrikeCardInfo {
|
|
5026
|
+
cardNameKey: string;
|
|
5027
|
+
cardImage: ImageModel | undefined;
|
|
5028
|
+
sendTimeSec: string;
|
|
5029
|
+
sendUser: BattleUserInfo | undefined;
|
|
5030
|
+
effectLastDuration: string;
|
|
5031
|
+
criticalStrikeRateLow: string;
|
|
5032
|
+
criticalStrikeRateHigh: string;
|
|
5033
|
+
multiple: string;
|
|
5034
|
+
giftNameKey: string;
|
|
5035
|
+
ruleUrl: string;
|
|
5036
|
+
effectTimeSec: string;
|
|
5037
|
+
toAnchorId: string;
|
|
5038
|
+
toAnchorIdStr: string;
|
|
5039
|
+
}
|
|
4629
5040
|
interface EnigmaBattleExtraInfo {
|
|
4630
5041
|
hasStarted: boolean;
|
|
4631
5042
|
isGiftFromEnigma: boolean;
|
|
@@ -4634,6 +5045,20 @@ interface EnigmaBattleSetting {
|
|
|
4634
5045
|
isStartable: boolean;
|
|
4635
5046
|
enigmaBattleCampaignStart: string;
|
|
4636
5047
|
enigmaBattleCampaignEnd: string;
|
|
5048
|
+
enigmaScoreRevealCountdownSec: string[];
|
|
5049
|
+
enigmaScoreRevealDurationSec: string;
|
|
5050
|
+
}
|
|
5051
|
+
interface ExtraTimeCardInfo {
|
|
5052
|
+
cardNameKey: string;
|
|
5053
|
+
cardImage: ImageModel | undefined;
|
|
5054
|
+
sendTimeSec: string;
|
|
5055
|
+
sendUser: BattleUserInfo | undefined;
|
|
5056
|
+
effectLastDuration: string;
|
|
5057
|
+
ruleUrl: string;
|
|
5058
|
+
effectTimeSec: string;
|
|
5059
|
+
toAnchorId: string;
|
|
5060
|
+
extraDurationSec: string;
|
|
5061
|
+
toAnchorIdStr: string;
|
|
4637
5062
|
}
|
|
4638
5063
|
interface GiftModeMeta {
|
|
4639
5064
|
giftId: string;
|
|
@@ -4641,6 +5066,18 @@ interface GiftModeMeta {
|
|
|
4641
5066
|
giftIconImage: ImageModel | undefined;
|
|
4642
5067
|
giftModeDesc: Text | undefined;
|
|
4643
5068
|
}
|
|
5069
|
+
interface GiftModeMetaList {
|
|
5070
|
+
giftModeMeta: GiftModeMeta[];
|
|
5071
|
+
}
|
|
5072
|
+
interface GiftModeMetaV2 {
|
|
5073
|
+
anchorGiftModeMetaByType: {
|
|
5074
|
+
[key: string]: AnchorGiftModeMetaMap;
|
|
5075
|
+
};
|
|
5076
|
+
}
|
|
5077
|
+
interface GiftModeMetaV2_AnchorGiftModeMetaByTypeEntry {
|
|
5078
|
+
key: string;
|
|
5079
|
+
value: AnchorGiftModeMetaMap | undefined;
|
|
5080
|
+
}
|
|
4644
5081
|
interface HighScoreControlCfg {
|
|
4645
5082
|
normalControlApplied: boolean;
|
|
4646
5083
|
threshold: string;
|
|
@@ -4653,6 +5090,19 @@ interface LeagueScoreInfo {
|
|
|
4653
5090
|
contentText: Text | undefined;
|
|
4654
5091
|
classOptOut: boolean;
|
|
4655
5092
|
contentTextOpen: Text | undefined;
|
|
5093
|
+
matchTheme: number;
|
|
5094
|
+
leftIcon: ImageModel | undefined;
|
|
5095
|
+
rightIcon: ImageModel | undefined;
|
|
5096
|
+
rightSchemaJumpLink: string;
|
|
5097
|
+
}
|
|
5098
|
+
interface MatchInvitePanelConfig {
|
|
5099
|
+
headerText: Text | undefined;
|
|
5100
|
+
headerTextDarkMode: Text | undefined;
|
|
5101
|
+
descText: Text | undefined;
|
|
5102
|
+
descTextDarkMode: Text | undefined;
|
|
5103
|
+
}
|
|
5104
|
+
interface MatchOpeningAnimationConfig {
|
|
5105
|
+
startAnimationRule: string;
|
|
4656
5106
|
}
|
|
4657
5107
|
interface MatchPunishEffectInfo {
|
|
4658
5108
|
userToEffectMap: {
|
|
@@ -4675,6 +5125,22 @@ interface MatchPunishExtraInfo {
|
|
|
4675
5125
|
cohostContentGuideInfo: CohostContentGuideInfo | undefined;
|
|
4676
5126
|
recommendedPlaybookInfo: RecommendedPlaybookInfo | undefined;
|
|
4677
5127
|
}
|
|
5128
|
+
interface MatchThemeDisplayResource {
|
|
5129
|
+
matchTheme: number;
|
|
5130
|
+
matchOpeningAnimationConfig: MatchOpeningAnimationConfig | undefined;
|
|
5131
|
+
matchTitleBarConfig: MatchTitleBarConfig | undefined;
|
|
5132
|
+
matchInvitePanelConfig: MatchInvitePanelConfig | undefined;
|
|
5133
|
+
}
|
|
5134
|
+
interface MatchTitleBarConfig {
|
|
5135
|
+
displayRules: MatchTitleBarDisplayRule[];
|
|
5136
|
+
}
|
|
5137
|
+
interface MatchTitleBarDisplayRule {
|
|
5138
|
+
trigger: MatchTitleBarTrigger | undefined;
|
|
5139
|
+
displayResource: TitleBarDisplayResource | undefined;
|
|
5140
|
+
}
|
|
5141
|
+
interface MatchTitleBarTrigger {
|
|
5142
|
+
type: number;
|
|
5143
|
+
}
|
|
4678
5144
|
interface PlaybookBizExtra {
|
|
4679
5145
|
customAtomicCapabilities: {
|
|
4680
5146
|
[key: string]: string;
|
|
@@ -4684,6 +5150,16 @@ interface PlaybookBizExtra_CustomAtomicCapabilitiesEntry {
|
|
|
4684
5150
|
key: string;
|
|
4685
5151
|
value: string;
|
|
4686
5152
|
}
|
|
5153
|
+
interface PotionCardInfo {
|
|
5154
|
+
cardNameKey: string;
|
|
5155
|
+
cardImage: ImageModel | undefined;
|
|
5156
|
+
sendTimeSec: string;
|
|
5157
|
+
sendUser: BattleUserInfo | undefined;
|
|
5158
|
+
effectLastDuration: string;
|
|
5159
|
+
ruleUrl: string;
|
|
5160
|
+
effectTimeSec: string;
|
|
5161
|
+
toAnchorId: string;
|
|
5162
|
+
}
|
|
4687
5163
|
interface PreviewPeriod {
|
|
4688
5164
|
duration: string;
|
|
4689
5165
|
prompt: BattlePrompt | undefined;
|
|
@@ -4708,6 +5184,28 @@ interface RewardPeriodConfig {
|
|
|
4708
5184
|
rewardingPrompt: BattlePrompt | undefined;
|
|
4709
5185
|
clickPrompt: BattlePrompt | undefined;
|
|
4710
5186
|
}
|
|
5187
|
+
interface SmokeCardInfo {
|
|
5188
|
+
cardNameKey: string;
|
|
5189
|
+
cardImage: ImageModel | undefined;
|
|
5190
|
+
sendTimeSec: string;
|
|
5191
|
+
sendUser: BattleUserInfo | undefined;
|
|
5192
|
+
effectLastDuration: string;
|
|
5193
|
+
ruleUrl: string;
|
|
5194
|
+
effectTimeSec: string;
|
|
5195
|
+
toAnchorId: string;
|
|
5196
|
+
toAnchorIdStr: string;
|
|
5197
|
+
}
|
|
5198
|
+
interface SpecialEffectCardInfo {
|
|
5199
|
+
cardNameKey: string;
|
|
5200
|
+
cardImage: ImageModel | undefined;
|
|
5201
|
+
sendTimeSec: string;
|
|
5202
|
+
sendUser: BattleUserInfo | undefined;
|
|
5203
|
+
effectLastDuration: string;
|
|
5204
|
+
ruleUrl: string;
|
|
5205
|
+
effectTimeSec: string;
|
|
5206
|
+
toAnchorId: string;
|
|
5207
|
+
toAnchorIdStr: string;
|
|
5208
|
+
}
|
|
4711
5209
|
interface TaskPeriodConfig {
|
|
4712
5210
|
targetStartTime: string;
|
|
4713
5211
|
duration: string;
|
|
@@ -4726,6 +5224,39 @@ interface TeamMatchCampaign {
|
|
|
4726
5224
|
startSfxTeamId: string[];
|
|
4727
5225
|
hasTeamMatchMvpSfx: boolean;
|
|
4728
5226
|
}
|
|
5227
|
+
interface TitleBarDisplayResource {
|
|
5228
|
+
leftIcon: ImageModel | undefined;
|
|
5229
|
+
contentText: Text | undefined;
|
|
5230
|
+
rightIcon: ImageModel | undefined;
|
|
5231
|
+
rightIconSchemaUrl: string;
|
|
5232
|
+
durationMs: string;
|
|
5233
|
+
}
|
|
5234
|
+
interface Top2CardInfo {
|
|
5235
|
+
common: CommonCardInfo | undefined;
|
|
5236
|
+
}
|
|
5237
|
+
interface Top3CardInfo {
|
|
5238
|
+
common: CommonCardInfo | undefined;
|
|
5239
|
+
}
|
|
5240
|
+
interface VaultGloveCardInfo {
|
|
5241
|
+
common: CommonCardInfo | undefined;
|
|
5242
|
+
giftNameKey: string;
|
|
5243
|
+
multiple: string;
|
|
5244
|
+
multipleOther: string;
|
|
5245
|
+
criticalStrikeRateLow: string;
|
|
5246
|
+
criticalStrikeRateHigh: string;
|
|
5247
|
+
}
|
|
5248
|
+
interface WaveCardInfo {
|
|
5249
|
+
cardNameKey: string;
|
|
5250
|
+
cardImage: ImageModel | undefined;
|
|
5251
|
+
sendTimeSec: string;
|
|
5252
|
+
sendUser: BattleUserInfo | undefined;
|
|
5253
|
+
effectLastDuration: string;
|
|
5254
|
+
ruleUrl: string;
|
|
5255
|
+
effectTimeSec: string;
|
|
5256
|
+
toAnchorId: string;
|
|
5257
|
+
}
|
|
5258
|
+
declare const AnchorGiftModeMetaMap: MessageFns$15<AnchorGiftModeMetaMap>;
|
|
5259
|
+
declare const AnchorGiftModeMetaMap_AnchorGiftModeMetasEntry: MessageFns$15<AnchorGiftModeMetaMap_AnchorGiftModeMetasEntry>;
|
|
4729
5260
|
declare const AnchorMatchSettings: MessageFns$15<AnchorMatchSettings>;
|
|
4730
5261
|
declare const BattleABTest: MessageFns$15<BattleABTest>;
|
|
4731
5262
|
declare const BattleABTestList: MessageFns$15<BattleABTestList>;
|
|
@@ -4746,23 +5277,47 @@ declare const BattleTeamUser: MessageFns$15<BattleTeamUser>;
|
|
|
4746
5277
|
declare const BattleUserInfo: MessageFns$15<BattleUserInfo>;
|
|
4747
5278
|
declare const BestTeammateRelation: MessageFns$15<BestTeammateRelation>;
|
|
4748
5279
|
declare const CohostContentGuideInfo: MessageFns$15<CohostContentGuideInfo>;
|
|
5280
|
+
declare const CommonCardInfo: MessageFns$15<CommonCardInfo>;
|
|
5281
|
+
declare const CommunityActiveDecoration: MessageFns$15<CommunityActiveDecoration>;
|
|
5282
|
+
declare const CommunityActiveDecoration_ImagesEntry: MessageFns$15<CommunityActiveDecoration_ImagesEntry>;
|
|
5283
|
+
declare const CommunityHeartMeInfo: MessageFns$15<CommunityHeartMeInfo>;
|
|
5284
|
+
declare const CommunityHeartMeInfo_SlotsEntry: MessageFns$15<CommunityHeartMeInfo_SlotsEntry>;
|
|
5285
|
+
declare const CriticalStrikeCardInfo: MessageFns$15<CriticalStrikeCardInfo>;
|
|
4749
5286
|
declare const EnigmaBattleExtraInfo: MessageFns$15<EnigmaBattleExtraInfo>;
|
|
4750
5287
|
declare const EnigmaBattleSetting: MessageFns$15<EnigmaBattleSetting>;
|
|
5288
|
+
declare const ExtraTimeCardInfo: MessageFns$15<ExtraTimeCardInfo>;
|
|
4751
5289
|
declare const GiftModeMeta: MessageFns$15<GiftModeMeta>;
|
|
5290
|
+
declare const GiftModeMetaList: MessageFns$15<GiftModeMetaList>;
|
|
5291
|
+
declare const GiftModeMetaV2: MessageFns$15<GiftModeMetaV2>;
|
|
5292
|
+
declare const GiftModeMetaV2_AnchorGiftModeMetaByTypeEntry: MessageFns$15<GiftModeMetaV2_AnchorGiftModeMetaByTypeEntry>;
|
|
4752
5293
|
declare const HighScoreControlCfg: MessageFns$15<HighScoreControlCfg>;
|
|
4753
5294
|
declare const LeagueScoreInfo: MessageFns$15<LeagueScoreInfo>;
|
|
5295
|
+
declare const MatchInvitePanelConfig: MessageFns$15<MatchInvitePanelConfig>;
|
|
5296
|
+
declare const MatchOpeningAnimationConfig: MessageFns$15<MatchOpeningAnimationConfig>;
|
|
4754
5297
|
declare const MatchPunishEffectInfo: MessageFns$15<MatchPunishEffectInfo>;
|
|
4755
5298
|
declare const MatchPunishEffectInfo_UserToEffectMapEntry: MessageFns$15<MatchPunishEffectInfo_UserToEffectMapEntry>;
|
|
4756
5299
|
declare const MatchPunishEffectInfo_EffectToEffectStructMapEntry: MessageFns$15<MatchPunishEffectInfo_EffectToEffectStructMapEntry>;
|
|
4757
5300
|
declare const MatchPunishExtraInfo: MessageFns$15<MatchPunishExtraInfo>;
|
|
5301
|
+
declare const MatchThemeDisplayResource: MessageFns$15<MatchThemeDisplayResource>;
|
|
5302
|
+
declare const MatchTitleBarConfig: MessageFns$15<MatchTitleBarConfig>;
|
|
5303
|
+
declare const MatchTitleBarDisplayRule: MessageFns$15<MatchTitleBarDisplayRule>;
|
|
5304
|
+
declare const MatchTitleBarTrigger: MessageFns$15<MatchTitleBarTrigger>;
|
|
4758
5305
|
declare const PlaybookBizExtra: MessageFns$15<PlaybookBizExtra>;
|
|
4759
5306
|
declare const PlaybookBizExtra_CustomAtomicCapabilitiesEntry: MessageFns$15<PlaybookBizExtra_CustomAtomicCapabilitiesEntry>;
|
|
5307
|
+
declare const PotionCardInfo: MessageFns$15<PotionCardInfo>;
|
|
4760
5308
|
declare const PreviewPeriod: MessageFns$15<PreviewPeriod>;
|
|
4761
5309
|
declare const RecommendedPlaybookInfo: MessageFns$15<RecommendedPlaybookInfo>;
|
|
4762
5310
|
declare const RecommendedPlaybookInfo_PlaybookBizExtrasEntry: MessageFns$15<RecommendedPlaybookInfo_PlaybookBizExtrasEntry>;
|
|
4763
5311
|
declare const RewardPeriodConfig: MessageFns$15<RewardPeriodConfig>;
|
|
5312
|
+
declare const SmokeCardInfo: MessageFns$15<SmokeCardInfo>;
|
|
5313
|
+
declare const SpecialEffectCardInfo: MessageFns$15<SpecialEffectCardInfo>;
|
|
4764
5314
|
declare const TaskPeriodConfig: MessageFns$15<TaskPeriodConfig>;
|
|
4765
5315
|
declare const TeamMatchCampaign: MessageFns$15<TeamMatchCampaign>;
|
|
5316
|
+
declare const TitleBarDisplayResource: MessageFns$15<TitleBarDisplayResource>;
|
|
5317
|
+
declare const Top2CardInfo: MessageFns$15<Top2CardInfo>;
|
|
5318
|
+
declare const Top3CardInfo: MessageFns$15<Top3CardInfo>;
|
|
5319
|
+
declare const VaultGloveCardInfo: MessageFns$15<VaultGloveCardInfo>;
|
|
5320
|
+
declare const WaveCardInfo: MessageFns$15<WaveCardInfo>;
|
|
4766
5321
|
interface MessageFns$15<T> {
|
|
4767
5322
|
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
4768
5323
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
@@ -4803,6 +5358,7 @@ interface BattleSetting {
|
|
|
4803
5358
|
sourceType: string;
|
|
4804
5359
|
iceShowdownSetting: IceShowdownSetting;
|
|
4805
5360
|
gameplayOption: MatchGameplayOption;
|
|
5361
|
+
giftModeMetaV2: GiftModeMetaV2 | undefined;
|
|
4806
5362
|
}
|
|
4807
5363
|
interface BattleTaskSettle {
|
|
4808
5364
|
result: BattleTaskSettleResult;
|
|
@@ -4833,6 +5389,7 @@ interface BattleUserArmy {
|
|
|
4833
5389
|
diamondScore: string;
|
|
4834
5390
|
userIdStr: string;
|
|
4835
5391
|
enigmaScore: string;
|
|
5392
|
+
isEnigma: boolean;
|
|
4836
5393
|
}
|
|
4837
5394
|
interface BattleUserInfoWrapper {
|
|
4838
5395
|
key: string;
|
|
@@ -4984,6 +5541,7 @@ interface GiftPickExtraGameInteraction {
|
|
|
4984
5541
|
interface GiftPickExtraGameInteractionExternal {}
|
|
4985
5542
|
interface GiftPickExtraGameInteractionStorage {
|
|
4986
5543
|
instruction: string;
|
|
5544
|
+
instructionDescKey: string;
|
|
4987
5545
|
}
|
|
4988
5546
|
interface GiftPickExtraGameTricks {
|
|
4989
5547
|
storage: GiftPickExtraGameTricksStorage | undefined;
|
|
@@ -5026,6 +5584,7 @@ interface ProfileExtraGameInteractionExternal {
|
|
|
5026
5584
|
}
|
|
5027
5585
|
interface ProfileExtraGameInteractionStorage {
|
|
5028
5586
|
gameId: string;
|
|
5587
|
+
templateId: string;
|
|
5029
5588
|
}
|
|
5030
5589
|
interface ProfileExtraGameTricks {
|
|
5031
5590
|
storage: ProfileExtraGameTricksStorage | undefined;
|
|
@@ -5383,6 +5942,10 @@ interface AffiliatedInfo_StickerTrackParamEntry {
|
|
|
5383
5942
|
key: string;
|
|
5384
5943
|
value: string;
|
|
5385
5944
|
}
|
|
5945
|
+
interface AnchorPair {
|
|
5946
|
+
sourceAnchorId: string;
|
|
5947
|
+
targetAnchorId: string;
|
|
5948
|
+
}
|
|
5386
5949
|
interface AnimationData {
|
|
5387
5950
|
geckoChannelName: string;
|
|
5388
5951
|
fileName: string;
|
|
@@ -5395,6 +5958,10 @@ interface AtmosphereTagInfo {
|
|
|
5395
5958
|
atmosphereTags: ProductAtmosphereTag[];
|
|
5396
5959
|
pinAtmosphereTags: ProductAtmosphereTag[];
|
|
5397
5960
|
}
|
|
5961
|
+
interface AwardCardNotice {
|
|
5962
|
+
displayContent: Text | undefined;
|
|
5963
|
+
awardedUsers: BattleUserInfo[];
|
|
5964
|
+
}
|
|
5398
5965
|
interface Background {
|
|
5399
5966
|
width: number;
|
|
5400
5967
|
height: number;
|
|
@@ -5516,6 +6083,8 @@ interface CapsuleBizParamsCohost {
|
|
|
5516
6083
|
isFriend: boolean;
|
|
5517
6084
|
subType: string;
|
|
5518
6085
|
rivalVoteCount: string;
|
|
6086
|
+
anchorClassLabel: GiftGalleryBadgeSection | undefined;
|
|
6087
|
+
rivalClassLabel: GiftGalleryBadgeSection | undefined;
|
|
5519
6088
|
}
|
|
5520
6089
|
interface CapsuleBizParamsCommentFlaggedPrompt {
|
|
5521
6090
|
trigger: string;
|
|
@@ -5583,6 +6152,9 @@ interface CaptionContent {
|
|
|
5583
6152
|
lang: string;
|
|
5584
6153
|
content: string;
|
|
5585
6154
|
}
|
|
6155
|
+
interface CardObtainGuide {
|
|
6156
|
+
notInUse: number;
|
|
6157
|
+
}
|
|
5586
6158
|
interface CohostListChangeContent {
|
|
5587
6159
|
users: CohostListUser[];
|
|
5588
6160
|
}
|
|
@@ -5663,6 +6235,8 @@ interface FlashSaleAtmosphere {
|
|
|
5663
6235
|
startTime: string;
|
|
5664
6236
|
endTime: string;
|
|
5665
6237
|
preheatTime: string;
|
|
6238
|
+
enhancementInfo: FlashSaleEnhancementInfo$1 | undefined;
|
|
6239
|
+
pdpViewerCount: number;
|
|
5666
6240
|
}
|
|
5667
6241
|
interface FlashSaleAtmosphereInfo {
|
|
5668
6242
|
productId: string;
|
|
@@ -5673,10 +6247,16 @@ interface FlashSaleAtmosphereInfo {
|
|
|
5673
6247
|
liveOnlyChannel: boolean;
|
|
5674
6248
|
creatorLimitType: number;
|
|
5675
6249
|
}
|
|
6250
|
+
interface FlashSaleEnhancementInfo$1 {
|
|
6251
|
+
stockShowStatus: number;
|
|
6252
|
+
buyerInfos: UserInfo[];
|
|
6253
|
+
enhancementTextInfo: EnhancementTextInfo | undefined;
|
|
6254
|
+
}
|
|
5676
6255
|
interface FlashSaleStock {
|
|
5677
6256
|
activityStockStatus: number;
|
|
5678
6257
|
activityStock: number;
|
|
5679
6258
|
activityStockText: string;
|
|
6259
|
+
totalStock: number;
|
|
5680
6260
|
}
|
|
5681
6261
|
interface FrequencyControl {
|
|
5682
6262
|
frequencyControlKey: string;
|
|
@@ -5733,6 +6313,10 @@ interface GoalData_GoalProgressEntry {
|
|
|
5733
6313
|
key: string;
|
|
5734
6314
|
value: Progress | undefined;
|
|
5735
6315
|
}
|
|
6316
|
+
interface GuideMessageFrequencyRule {
|
|
6317
|
+
roomShowCount: string;
|
|
6318
|
+
dayShowCount: string;
|
|
6319
|
+
}
|
|
5736
6320
|
interface HourlyRankRewardInfo {
|
|
5737
6321
|
userId: string;
|
|
5738
6322
|
assetId: string;
|
|
@@ -6025,6 +6609,15 @@ interface RoomNotifyMessageEventTracking {
|
|
|
6025
6609
|
anchorId: string;
|
|
6026
6610
|
giftSubOrderCreateTime: string;
|
|
6027
6611
|
}
|
|
6612
|
+
interface SpecialEffectNotice {
|
|
6613
|
+
score: string;
|
|
6614
|
+
fromUserId: string;
|
|
6615
|
+
toAnchorId: string;
|
|
6616
|
+
affectedAnchorPairs: AnchorPair[];
|
|
6617
|
+
effectType: number;
|
|
6618
|
+
communityHeartMeInfo: CommunityHeartMeInfo | undefined;
|
|
6619
|
+
communityHeartMeInfoStr: string;
|
|
6620
|
+
}
|
|
6028
6621
|
interface SpecifiedDisplayText {
|
|
6029
6622
|
uid: string;
|
|
6030
6623
|
displayText: Text | undefined;
|
|
@@ -6042,6 +6635,18 @@ interface SponsorshipInfo {
|
|
|
6042
6635
|
interface TagItem {
|
|
6043
6636
|
tagType: TagType;
|
|
6044
6637
|
tagText: Text | undefined;
|
|
6638
|
+
tagValue: string;
|
|
6639
|
+
displayLocation: number;
|
|
6640
|
+
eventTrackingFields: {
|
|
6641
|
+
[key: string]: string;
|
|
6642
|
+
};
|
|
6643
|
+
bizName: string;
|
|
6644
|
+
disableCountFrequencyControl: boolean;
|
|
6645
|
+
disableCrmClick: boolean;
|
|
6646
|
+
}
|
|
6647
|
+
interface TagItem_EventTrackingFieldsEntry {
|
|
6648
|
+
key: string;
|
|
6649
|
+
value: string;
|
|
6045
6650
|
}
|
|
6046
6651
|
interface TeamUsersInfo {
|
|
6047
6652
|
teamId: string;
|
|
@@ -6079,6 +6684,8 @@ interface Topic {
|
|
|
6079
6684
|
eventTrackingFields: {
|
|
6080
6685
|
[key: string]: string;
|
|
6081
6686
|
};
|
|
6687
|
+
bizName: string;
|
|
6688
|
+
disableCountFrequencyControl: boolean;
|
|
6082
6689
|
}
|
|
6083
6690
|
interface Topic_EventTrackingFieldsEntry {
|
|
6084
6691
|
key: string;
|
|
@@ -6096,6 +6703,55 @@ interface UnionAnimationInfo {
|
|
|
6096
6703
|
rankTypeArray: number[];
|
|
6097
6704
|
supportedVersion: string;
|
|
6098
6705
|
}
|
|
6706
|
+
interface UseCriticalStrikeCard {
|
|
6707
|
+
cardInfo: CriticalStrikeCardInfo | undefined;
|
|
6708
|
+
anchorId: string;
|
|
6709
|
+
displayContent: Text | undefined;
|
|
6710
|
+
}
|
|
6711
|
+
interface UseExtraTimeCard {
|
|
6712
|
+
cardInfo: ExtraTimeCardInfo | undefined;
|
|
6713
|
+
anchorId: string;
|
|
6714
|
+
displayContent: Text | undefined;
|
|
6715
|
+
}
|
|
6716
|
+
interface UsePotionCard {
|
|
6717
|
+
cardInfo: PotionCardInfo | undefined;
|
|
6718
|
+
anchorId: string;
|
|
6719
|
+
displayContent: Text | undefined;
|
|
6720
|
+
}
|
|
6721
|
+
interface UseSmokeCard {
|
|
6722
|
+
cardInfo: SmokeCardInfo | undefined;
|
|
6723
|
+
anchorId: string;
|
|
6724
|
+
displayContent: Text | undefined;
|
|
6725
|
+
}
|
|
6726
|
+
interface UseSpecialEffectCard {
|
|
6727
|
+
cardInfo: SpecialEffectCardInfo | undefined;
|
|
6728
|
+
anchorId: string;
|
|
6729
|
+
displayContent: Text | undefined;
|
|
6730
|
+
affectedAnchorPairs: AnchorPair[];
|
|
6731
|
+
effectType: number;
|
|
6732
|
+
communityHeartMeInfo: CommunityHeartMeInfo | undefined;
|
|
6733
|
+
communityHeartMeInfoStr: string;
|
|
6734
|
+
}
|
|
6735
|
+
interface UseTop2Card {
|
|
6736
|
+
cardInfo: Top2CardInfo | undefined;
|
|
6737
|
+
anchorId: string;
|
|
6738
|
+
displayContent: Text | undefined;
|
|
6739
|
+
}
|
|
6740
|
+
interface UseTop3Card {
|
|
6741
|
+
cardInfo: Top3CardInfo | undefined;
|
|
6742
|
+
anchorId: string;
|
|
6743
|
+
displayContent: Text | undefined;
|
|
6744
|
+
}
|
|
6745
|
+
interface UseVaultGloveCard {
|
|
6746
|
+
cardInfo: VaultGloveCardInfo | undefined;
|
|
6747
|
+
anchorId: string;
|
|
6748
|
+
displayContent: Text | undefined;
|
|
6749
|
+
}
|
|
6750
|
+
interface UseWaveCard {
|
|
6751
|
+
cardInfo: WaveCardInfo | undefined;
|
|
6752
|
+
anchorId: string;
|
|
6753
|
+
displayContent: Text | undefined;
|
|
6754
|
+
}
|
|
6099
6755
|
interface UserCountdownInfo {
|
|
6100
6756
|
countdownId: string;
|
|
6101
6757
|
score: string;
|
|
@@ -6116,6 +6772,10 @@ interface UserFanTicket {
|
|
|
6116
6772
|
topGuestRank: number;
|
|
6117
6773
|
ticketUiStyleV2: string;
|
|
6118
6774
|
}
|
|
6775
|
+
interface UserInfo {
|
|
6776
|
+
userId: string;
|
|
6777
|
+
avatar: ImageModel | undefined;
|
|
6778
|
+
}
|
|
6119
6779
|
interface UserInteractionInfo {
|
|
6120
6780
|
likeCnt: string;
|
|
6121
6781
|
commentCnt: string;
|
|
@@ -6359,6 +7019,10 @@ interface WebcastGiftMessage {
|
|
|
6359
7019
|
isAssetBundleGift: boolean;
|
|
6360
7020
|
assetBundle: AssetBundle | undefined;
|
|
6361
7021
|
effectExtra: string;
|
|
7022
|
+
secondaryEffectInfo: SecondaryEffectInfo | undefined;
|
|
7023
|
+
giftVariantId: number;
|
|
7024
|
+
shinyCardUnlockToken: string;
|
|
7025
|
+
giftEffect: GiftEffect | undefined;
|
|
6362
7026
|
}
|
|
6363
7027
|
interface WebcastGiftPanelUpdateMessage {
|
|
6364
7028
|
common: CommonMessageData | undefined;
|
|
@@ -6387,6 +7051,7 @@ interface WebcastGuideMessage {
|
|
|
6387
7051
|
duration: string;
|
|
6388
7052
|
displayStyle: string;
|
|
6389
7053
|
scene: string;
|
|
7054
|
+
frequencyRule: GuideMessageFrequencyRule | undefined;
|
|
6390
7055
|
}
|
|
6391
7056
|
interface WebcastHourlyRankRewardMessage {
|
|
6392
7057
|
common: CommonMessageData | undefined;
|
|
@@ -6511,6 +7176,11 @@ interface WebcastLinkMicBattle {
|
|
|
6511
7176
|
[key: string]: AnchorMatchSettings;
|
|
6512
7177
|
};
|
|
6513
7178
|
battleFeatureFlags: BattleFeatureFlags | undefined;
|
|
7179
|
+
crossRoomLayout: LayoutData | undefined;
|
|
7180
|
+
trackingExtra: {
|
|
7181
|
+
[key: string]: string;
|
|
7182
|
+
};
|
|
7183
|
+
matchThemeDisplayResource: MatchThemeDisplayResource | undefined;
|
|
6514
7184
|
}
|
|
6515
7185
|
interface WebcastLinkMicBattle_BattleResultEntry {
|
|
6516
7186
|
key: string;
|
|
@@ -6532,6 +7202,28 @@ interface WebcastLinkMicBattle_AnchorMatchSettingsEntry {
|
|
|
6532
7202
|
key: string;
|
|
6533
7203
|
value: AnchorMatchSettings | undefined;
|
|
6534
7204
|
}
|
|
7205
|
+
interface WebcastLinkMicBattle_TrackingExtraEntry {
|
|
7206
|
+
key: string;
|
|
7207
|
+
value: string;
|
|
7208
|
+
}
|
|
7209
|
+
interface WebcastLinkMicBattleItemCard {
|
|
7210
|
+
common: CommonMessageData | undefined;
|
|
7211
|
+
battleId: string;
|
|
7212
|
+
msgType: BattleCardMsgType;
|
|
7213
|
+
cardObtainGuide: CardObtainGuide | undefined;
|
|
7214
|
+
useCriticalStrikeCard: UseCriticalStrikeCard | undefined;
|
|
7215
|
+
useSmokeCard: UseSmokeCard | undefined;
|
|
7216
|
+
awardCardNotice: AwardCardNotice | undefined;
|
|
7217
|
+
useExtraTimeCard: UseExtraTimeCard | undefined;
|
|
7218
|
+
useSpecialEffectCard: UseSpecialEffectCard | undefined;
|
|
7219
|
+
usePotionCard: UsePotionCard | undefined;
|
|
7220
|
+
useWaveCard: UseWaveCard | undefined;
|
|
7221
|
+
specialEffectNotice: SpecialEffectNotice | undefined;
|
|
7222
|
+
useTop2Card: UseTop2Card | undefined;
|
|
7223
|
+
useTop3Card: UseTop3Card | undefined;
|
|
7224
|
+
useVaultGloveCard: UseVaultGloveCard | undefined;
|
|
7225
|
+
awardReason: number;
|
|
7226
|
+
}
|
|
6535
7227
|
interface WebcastLinkMicBattlePunishFinish {
|
|
6536
7228
|
common: CommonMessageData | undefined;
|
|
6537
7229
|
channelId: string;
|
|
@@ -6747,6 +7439,7 @@ interface WebcastRankTextMessage {
|
|
|
6747
7439
|
content: Text | undefined;
|
|
6748
7440
|
rankType: ProfitRankType;
|
|
6749
7441
|
userEnigmaInfo: RankUserEnigmaInfo | undefined;
|
|
7442
|
+
publicAreaMsgCommon: PublicAreaMessageCommon | undefined;
|
|
6750
7443
|
}
|
|
6751
7444
|
interface WebcastRankUpdateMessage {
|
|
6752
7445
|
common: CommonMessageData | undefined;
|
|
@@ -6890,8 +7583,10 @@ declare const ActionButton: MessageFns$4<ActionButton>;
|
|
|
6890
7583
|
declare const AddToCartButton: MessageFns$4<AddToCartButton>;
|
|
6891
7584
|
declare const AffiliatedInfo: MessageFns$4<AffiliatedInfo>;
|
|
6892
7585
|
declare const AffiliatedInfo_StickerTrackParamEntry: MessageFns$4<AffiliatedInfo_StickerTrackParamEntry>;
|
|
7586
|
+
declare const AnchorPair: MessageFns$4<AnchorPair>;
|
|
6893
7587
|
declare const AnimationData: MessageFns$4<AnimationData>;
|
|
6894
7588
|
declare const AtmosphereTagInfo: MessageFns$4<AtmosphereTagInfo>;
|
|
7589
|
+
declare const AwardCardNotice: MessageFns$4<AwardCardNotice>;
|
|
6895
7590
|
declare const Background: MessageFns$4<Background>;
|
|
6896
7591
|
declare const BarrageEvent: MessageFns$4<BarrageEvent>;
|
|
6897
7592
|
declare const BarrageEvent_ParamsEntry: MessageFns$4<BarrageEvent_ParamsEntry>;
|
|
@@ -6923,6 +7618,7 @@ declare const CapsuleBizParamsMultiGuestInviteGuide: MessageFns$4<CapsuleBizPara
|
|
|
6923
7618
|
declare const CapsuleBizParamsNewAnchorEffect: MessageFns$4<CapsuleBizParamsNewAnchorEffect>;
|
|
6924
7619
|
declare const CapsuleBizParamsRandomGift: MessageFns$4<CapsuleBizParamsRandomGift>;
|
|
6925
7620
|
declare const CaptionContent: MessageFns$4<CaptionContent>;
|
|
7621
|
+
declare const CardObtainGuide: MessageFns$4<CardObtainGuide>;
|
|
6926
7622
|
declare const CohostListChangeContent: MessageFns$4<CohostListChangeContent>;
|
|
6927
7623
|
declare const CommentLabelScore: MessageFns$4<CommentLabelScore>;
|
|
6928
7624
|
declare const CommentQualityScore: MessageFns$4<CommentQualityScore>;
|
|
@@ -6936,6 +7632,7 @@ declare const Extra: MessageFns$4<Extra>;
|
|
|
6936
7632
|
declare const FanTicketRoomNoticeContent: MessageFns$4<FanTicketRoomNoticeContent>;
|
|
6937
7633
|
declare const FlashSaleAtmosphere: MessageFns$4<FlashSaleAtmosphere>;
|
|
6938
7634
|
declare const FlashSaleAtmosphereInfo: MessageFns$4<FlashSaleAtmosphereInfo>;
|
|
7635
|
+
declare const FlashSaleEnhancementInfo$1: MessageFns$4<FlashSaleEnhancementInfo$1>;
|
|
6939
7636
|
declare const FlashSaleStock: MessageFns$4<FlashSaleStock>;
|
|
6940
7637
|
declare const FrequencyControl: MessageFns$4<FrequencyControl>;
|
|
6941
7638
|
declare const GalleryData: MessageFns$4<GalleryData>;
|
|
@@ -6946,6 +7643,7 @@ declare const GiftInfo: MessageFns$4<GiftInfo>;
|
|
|
6946
7643
|
declare const GiftMonitorInfo: MessageFns$4<GiftMonitorInfo>;
|
|
6947
7644
|
declare const GoalData: MessageFns$4<GoalData>;
|
|
6948
7645
|
declare const GoalData_GoalProgressEntry: MessageFns$4<GoalData_GoalProgressEntry>;
|
|
7646
|
+
declare const GuideMessageFrequencyRule: MessageFns$4<GuideMessageFrequencyRule>;
|
|
6949
7647
|
declare const HourlyRankRewardInfo: MessageFns$4<HourlyRankRewardInfo>;
|
|
6950
7648
|
declare const Img: MessageFns$4<Img>;
|
|
6951
7649
|
declare const InteractiveGiftInfo: MessageFns$4<InteractiveGiftInfo>;
|
|
@@ -6995,9 +7693,11 @@ declare const RoomBasedGiftData_RoomBasedGiftsEntry: MessageFns$4<RoomBasedGiftD
|
|
|
6995
7693
|
declare const RoomBasedGifts: MessageFns$4<RoomBasedGifts>;
|
|
6996
7694
|
declare const RoomNotifyMessageExtra: MessageFns$4<RoomNotifyMessageExtra>;
|
|
6997
7695
|
declare const RoomNotifyMessageEventTracking: MessageFns$4<RoomNotifyMessageEventTracking>;
|
|
7696
|
+
declare const SpecialEffectNotice: MessageFns$4<SpecialEffectNotice>;
|
|
6998
7697
|
declare const SpecifiedDisplayText: MessageFns$4<SpecifiedDisplayText>;
|
|
6999
7698
|
declare const SponsorshipInfo: MessageFns$4<SponsorshipInfo>;
|
|
7000
7699
|
declare const TagItem: MessageFns$4<TagItem>;
|
|
7700
|
+
declare const TagItem_EventTrackingFieldsEntry: MessageFns$4<TagItem_EventTrackingFieldsEntry>;
|
|
7001
7701
|
declare const TeamUsersInfo: MessageFns$4<TeamUsersInfo>;
|
|
7002
7702
|
declare const TemplateContent: MessageFns$4<TemplateContent>;
|
|
7003
7703
|
declare const TextEffect: MessageFns$4<TextEffect>;
|
|
@@ -7007,8 +7707,18 @@ declare const Topic: MessageFns$4<Topic>;
|
|
|
7007
7707
|
declare const Topic_EventTrackingFieldsEntry: MessageFns$4<Topic_EventTrackingFieldsEntry>;
|
|
7008
7708
|
declare const TriggerCondition: MessageFns$4<TriggerCondition>;
|
|
7009
7709
|
declare const UnionAnimationInfo: MessageFns$4<UnionAnimationInfo>;
|
|
7710
|
+
declare const UseCriticalStrikeCard: MessageFns$4<UseCriticalStrikeCard>;
|
|
7711
|
+
declare const UseExtraTimeCard: MessageFns$4<UseExtraTimeCard>;
|
|
7712
|
+
declare const UsePotionCard: MessageFns$4<UsePotionCard>;
|
|
7713
|
+
declare const UseSmokeCard: MessageFns$4<UseSmokeCard>;
|
|
7714
|
+
declare const UseSpecialEffectCard: MessageFns$4<UseSpecialEffectCard>;
|
|
7715
|
+
declare const UseTop2Card: MessageFns$4<UseTop2Card>;
|
|
7716
|
+
declare const UseTop3Card: MessageFns$4<UseTop3Card>;
|
|
7717
|
+
declare const UseVaultGloveCard: MessageFns$4<UseVaultGloveCard>;
|
|
7718
|
+
declare const UseWaveCard: MessageFns$4<UseWaveCard>;
|
|
7010
7719
|
declare const UserCountdownInfo: MessageFns$4<UserCountdownInfo>;
|
|
7011
7720
|
declare const UserFanTicket: MessageFns$4<UserFanTicket>;
|
|
7721
|
+
declare const UserInfo: MessageFns$4<UserInfo>;
|
|
7012
7722
|
declare const UserInteractionInfo: MessageFns$4<UserInteractionInfo>;
|
|
7013
7723
|
declare const UserMetrics: MessageFns$4<UserMetrics>;
|
|
7014
7724
|
declare const UserModelPredictionData: MessageFns$4<UserModelPredictionData>;
|
|
@@ -7046,6 +7756,8 @@ declare const WebcastLinkMicBattle_BattleComboV2Entry: MessageFns$4<WebcastLinkM
|
|
|
7046
7756
|
declare const WebcastLinkMicBattle_LeagueInfoMapEntry: MessageFns$4<WebcastLinkMicBattle_LeagueInfoMapEntry>;
|
|
7047
7757
|
declare const WebcastLinkMicBattle_LeagueScoreInfoMapEntry: MessageFns$4<WebcastLinkMicBattle_LeagueScoreInfoMapEntry>;
|
|
7048
7758
|
declare const WebcastLinkMicBattle_AnchorMatchSettingsEntry: MessageFns$4<WebcastLinkMicBattle_AnchorMatchSettingsEntry>;
|
|
7759
|
+
declare const WebcastLinkMicBattle_TrackingExtraEntry: MessageFns$4<WebcastLinkMicBattle_TrackingExtraEntry>;
|
|
7760
|
+
declare const WebcastLinkMicBattleItemCard: MessageFns$4<WebcastLinkMicBattleItemCard>;
|
|
7049
7761
|
declare const WebcastLinkMicBattlePunishFinish: MessageFns$4<WebcastLinkMicBattlePunishFinish>;
|
|
7050
7762
|
declare const WebcastLinkMicFanTicketMethod: MessageFns$4<WebcastLinkMicFanTicketMethod>;
|
|
7051
7763
|
declare const WebcastLinkMicMethod: MessageFns$4<WebcastLinkMicMethod>;
|
|
@@ -7170,6 +7882,7 @@ interface WebcastLinkLayerMessage {
|
|
|
7170
7882
|
groupChangeContent: GroupChangeContent | undefined;
|
|
7171
7883
|
joinGroupDirectContent: JoinGroupDirectContent | undefined;
|
|
7172
7884
|
joinRoomDirectContent: JoinRoomDirectContent | undefined;
|
|
7885
|
+
linkEnvelopeContent: LinkEnvelopeContent | undefined;
|
|
7173
7886
|
businessContent: BusinessContent | undefined;
|
|
7174
7887
|
}
|
|
7175
7888
|
declare const WebcastLinkLayerMessage: MessageFns$2<WebcastLinkLayerMessage>;
|
|
@@ -7201,6 +7914,7 @@ interface WebcastEnvelopeMessage {
|
|
|
7201
7914
|
common: CommonMessageData | undefined;
|
|
7202
7915
|
envelopeInfo: MessageRedEnvelopInfo | undefined;
|
|
7203
7916
|
display: EnvelopeDisplay;
|
|
7917
|
+
publicAreaMsgCommon: PublicAreaMessageCommon | undefined;
|
|
7204
7918
|
}
|
|
7205
7919
|
declare const MessageRedEnvelopInfo: MessageFns$1<MessageRedEnvelopInfo>;
|
|
7206
7920
|
declare const WebcastEnvelopeMessage: MessageFns$1<WebcastEnvelopeMessage>;
|
|
@@ -7258,4 +7972,4 @@ interface MessageFns<T> {
|
|
|
7258
7972
|
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
7259
7973
|
}
|
|
7260
7974
|
//#endregion
|
|
7261
|
-
export { AccessControlCaptcha, ActionButton, ActionButtonType, ActivityRewardInfo, AddToCartButton, AffiliatedInfo, AffiliatedInfoStickerShowScene, AffiliatedInfo_StickerTrackParamEntry, AgreeStatus, AllListUser, AnchorLayoutSetting, AnchorLayoutStyleSetting, AnchorLevel, AnchorLinkmicUserSettings, AnchorMatchSettings, AnchorPanelLayoutTypeSetting, AnimationData, ApplyBizContent, ApplyContent, ArrowConfig, AssetBase, AssetBundle, AssetExtra, AssetsModel, AtmosphereInfo, AtmosphereTagInfo, AtomAction, AuctionInfo, AuctionWinnerPopup, AuditInfo, AuditStatus, AuditTaskType, AuthenticationInfo, Author, AvatarState, BEFViewRenderSize, BackGroundImageState, Background, BadgeDisplayType, BadgeExhibitionType, BadgePriorityType, BadgeSceneType, BadgeStruct, BadgeText, BadgeTextPosition, BagIndex, BarrageEvent, BarrageEvent_ParamsEntry, BarrageMessageBarrageType, BarrageMessageIconDisplayType, BarrageMessageRenderType, BarrageMessageShowType, BarrageTypeEcomLiveParam, BarrageTypeFansLevelParam, BarrageTypeGiftGalleryParam, BarrageTypeSubscribeGiftParam, BarrageTypeUserGradeParam, BaseProtoMessage, BatchGiftInfo, BattleABTest, BattleABTestList, BattleABTestSetting, BattleABTestType, BattleBaseUserInfo, BattleBonusConfig, BattleBonusConfig_GiftAmountGuideEntry, BattleComboInfo, BattleDisplayConfig, BattleEffect, BattleEffectInfos, BattleFeatureFlags, BattleGamePlayContent, BattleGamePlayContentUserInfo, BattleInfo, BattleInviteType, BattleInviteeGiftPermission, BattlePrompt, BattlePromptElem, BattleResult, BattleResultResult, BattleRewardSettle, BattleRewardSettleRewardStatus, BattleRivalTag, BattleScene, BattleSetting, BattleSettingsBattleStatus, BattleTaskGiftAmountGuide, BattleTaskMessageType, BattleTaskSettle, BattleTaskSettleResult, BattleTaskStart, BattleTaskUpdate, BattleTeamResult, BattleTeamUser, BattleTeamUserArmies, BattleTeamUserArmies_HostVisibleRankFromTeamIdEntry, BattleType, BattleUserArmies, BattleUserArmy, BattleUserInfo, BattleUserInfoWrapper, BattleUserSettings, BestTeammateRelation, BillboardDisplayResult, BillboardInfo, BillboardInfo_DaInfoEntry, BizLayoutState, BizSpotExtra, BizSpotInfo, BizType, BoostCard, BorderInfo, BusinessContent, ByteRTCExtInfo, CampaignBannerDisplay, CampaignBannerDisplayResult, CampaignBannerDisplay_DaInfoEntry, CancelApplyContent, CancelInviteContent, CancelJoinGroupContent, CapsuleBizParams, CapsuleBizParamsAnchorPinPerk, CapsuleBizParamsCohost, CapsuleBizParamsCommentFlaggedPrompt, CapsuleBizParamsCommentFlaggedPromptForNewUser, CapsuleBizParamsCommentMuteRulePrompt, CapsuleBizParamsEcom, CapsuleBizParamsEcomEventTracking, CapsuleBizParamsGamingModeratorsCommentGuide, CapsuleBizParamsModeratorGuide, CapsuleBizParamsMultiGuestApplyGuide, CapsuleBizParamsMultiGuestInviteGuide, CapsuleBizParamsNewAnchorEffect, CapsuleBizParamsRandomGift, CaptionContent, CarouselCfg, ClassInfo, ClassType, CoHostBizLayoutExtra, CoHostBizSpotExtra, CoHostPermissoinType, CohostABInfo, CohostABTest, CohostABTestList, CohostABTestSetting, CohostABTestType, CohostContent, CohostContentGuideInfo, CohostLayoutMode, CohostListChangeContent, CohostListUser, CohostMode, CohostNudgeInfo, CohostStreamConfig, CohostTopic, CohostUserInfo, CombineBadgeBackground, CombineBadgeStruct, ComboBadgeInfo, CommentLabelScore, CommentQualityScore, CommentTag, CommerceInfo, CommerceInfo_ProductInfoEntry, CommerceInfo_VoucherInfoEntry, CommonMessageData, Content, ContentInviteSource, ContentPosition, ContentPositionType, ContentSource, Contributor, ControlAction, ControlChaosInfo, CreateChannelContent, CreatorSuccessInfo, CrossScreenEffectInfo, CrossScreenEffectInfo_ActionEffectIdsEntry, CrossScreenEffectInfo_ReactionEffectIdsEntry, CrossScreenEffectInfo_SingleActionEffectIdsEntry, DSLConfig, DelayParam, Detail, DetailBlockReason, DiffInfo, DispersionInfo, DispersionParam, DisplayControl, DisplayControlHorizontalOnclickTriggerType, DisplayControl_TargetGroupShowRstEntry, DisplayStatus, DisplayStyle, DistributionStrategy, DynamicRestriction, EcomLiveElementActions, EcommerceEntrance, EffectConfigBean, EffectStruct, EmoteWithIndex as EmojiEmoteWithIndex, EmoteModel, EmoteModelAuditInfo, EmotePrivateType, EmoteScene, EmoteType, EmoteUploadInfo, EnigmaBattleExtraInfo, EnigmaBattleSetting, EnigmaInfo, EntranceGroupType, EnvelopeBusinessType, EnvelopeDisplay, EnvelopeEnigmaInfo, EnvelopeFollowShowStatus, EventUserInfo, ExemptStrategy, ExhibitionType, ExtendAuctionCfg, Extra, FaceRecognitionMeta, FanTicketRoomNoticeContent, FansClubData, FansClubInfo, FansClubMember, FansClubMember_PreferDataEntry, FinishChannelContent, FlashSaleAtmosphere, FlashSaleAtmosphereInfo, FlashSaleStock, FlyingMicResources, FollowInfo, FontStyle, FrequencyControl, GalleryData, GalleryData_ProgressEntry, GameAction, GameActionType, GamePlayContent, GameRankNotifyMessageMsgType, GameTricksShortcut, GamepadTaskType, Gift, GiftBoxInfo, GiftColorInfo, GiftGalleryBadgeInfo, GiftGalleryBadgeSection, GiftIMPriority, GiftInfo, GiftInfoInBox, GiftLockInfo, GiftMessageIgnoreConfig, GiftMessageVersion, GiftModeMeta, GiftMonitorInfo, GiftPanelBanner, GiftPanelBeaconBubble, GiftPanelBeaconBubbleType, GiftPermissionType, GiftPick, GiftPickExtra, GiftPickExtraGameInteraction, GiftPickExtraGameInteractionExternal, GiftPickExtraGameInteractionStorage, GiftPickExtraGameTricks, GiftPickExtraGameTricksExternal, GiftPickExtraGameTricksStorage, GiftPickWithScore, GiftRandomEffectInfo, GiftResource, GiftSeriesInfo, GiftShowType, GiftSkin, GiftSkinToGiftTextsInfo, GiftSource, GiftSponsorInfo, GiftStructSchemeGiftType, GiftText, GiftTrayInfo, GiftTrayStyle, Gift_BizExtraEntry, Gift_GiftResourcesEntry, Gift_TrackerParamsEntry, GiftsBoxInfo, GoalComparison, GoalData, GoalData_GoalProgressEntry, GoalMessageSource, GoalPinInfo, GoalReward, GoalStats, GradeIcon, GroupChangeContent, GroupChannelAllUser, GroupChannelUser, GroupPlayer, GroupStatus, GuestMicCameraChangeScene, GuestMicCameraManageOp, GuestUserInfo, Hashtag, HashtagNamespace, HeartBeatMessage, HighScoreControlCfg, HitABStatus, HorizontalPaddingRule, HotKey, HotTag, HourlyRankRewardInfo, IceShowdownSetting, IconConfig, ImageBadge, ImageModel, Img, InteractiveGiftInfo, InvitationReorderExtra, InviteBizContent, InviteContent, InviteTopHostInfo, InviterRivalExtra, JoinDirectBizContent, JoinDirectContent, JoinGroupBizContent, JoinGroupBizContent_AbInfosEntry, JoinGroupContent, JoinGroupDirectBizContent, JoinGroupDirectContent, JoinGroupMessageExtra, JoinGroupMessageExtra_RivalGuestsMapEntry, JoinRoomDirectBizContent, JoinRoomDirectContent, JoinType, JumpPage, JustDanceExtra, JustDanceLayoutExtra, KeyBoardHotKey, KickOutBizContent, KickOutContent, KickoutReason, LabelConfig, LayoutEnlargeStatus, LayoutState, LayoutStyle, LeagueScoreInfo, LeaveContent, LeaveJoinGroupContent, LikeEffect, LinkLayerListUser, LinkLayerMessageType, LinkListChangeContent, LinkListStatus, LinkListUser, LinkMicArmiesTriggerReason, LinkMicAudienceInviteGuide, LinkMicAudienceNoticeText, LinkMicAudienceTurnOnGuide, LinkMicBattleBattleAction, LinkMicBattlePunishFinishReason, LinkMicGiftGalleryDisplayText, LinkMicUserAdminType, LinkPosition, LinkRoleType, LinkSilenceStatus, LinkType, LinkUserState, LinkUserType, LinkedListChangeContent, LinkerAcceptNoticeContent, LinkerCancelContent, LinkerCloseContent, LinkerCreateContent, LinkerEnterContent, LinkerInfo, LinkerInviteContent, LinkerInviteContent_RtcExtInfoMapEntry, LinkerInviteMessageExtra, LinkerKickOutContent, LinkerLeaveContent, LinkerListChangeContent, ListUser as LinkerListUser, LinkerMediaChangeContent, LinkerMediaChangeOperator, LinkerMicIdxUpdateContent, LinkerMicIdxUpdateInfo, LinkerMode, LinkerMuteContent, LinkerRandomMatchContent, LinkerReplyContent, LinkerReplyContent_ApplierMicIdxInfoMapEntry, LinkerReplyContent_RtcExtInfoMapEntry, LinkerSetting, LinkerSysKickOutContent, LinkerUpdateUserContent, LinkerUpdateUserContent_UpdateInfoEntry, LinkerUserType, LinkerWaitingListChangeContent, LinkmicApplierSortSetting, LinkmicAudienceApplyGuide, LinkmicAudienceInviteGroupChatMemberGuide, LinkmicGiftExpressionStrategy, LinkmicInfo, LinkmicMultiLiveEnum, LinkmicPlayType, LinkmicReplyType, LinkmicShareRevenueSetting, LinkmicStatus, LinkmicUserInfo, LinkmicUserSettingDisableVideoLinkmic, LinkmicUserSettingLayout, LinkmicUserSettingMultiGuestApplyAutoApprove, LinkmicUserSettingShowAction, LinkmicUserStatus, LinkmicUserToastContent, ListChangeBizContent, ListChangeBizContent_AbInfosEntry, ListChangeBizContent_GuestUserInfosEntry, ListChangeBizContent_UserInfosEntry, LiveEventInfo, LiveEventInfoEventPayMethod, LiveEventInfo_WalletPkgDictEntry, LiveFlashSaleInfo, LiveMessageID, LiveMessageSEI, LivePermissionInfo, LiveStreamGoal, LiveStreamGoalContributor, LiveStreamGoalIndicator, LiveStreamSubGoal, LiveStreamSubGoalGift, LokiExtraContent, LynxCrossScreenEffectInfo, LynxGiftExtra, MatchGameplayOption, MatchInfo, MatchInfoMultiplierType, MatchPunishEffectInfo, MatchPunishEffectInfo_EffectToEffectStructMapEntry, MatchPunishEffectInfo_UserToEffectMapEntry, MatchPunishExtraInfo, MediaState, MemberMessageAction, Text as MessageCommonText, MessageDisplayInfo, MessageDisplayStyle, MessageEntity, MessageRedEnvelopInfo, SponsorshipInfo as MessageSponsorshipInfo, MessageType, MicIdxOperation, MicPositionData, MigrationDetails, AnchorInfo as ModelAnchorInfo, AuthenticationInfo$1 as ModelAuthenticationInfo, MouseHotKey, MsgFilter, MsgMeta, MultiGuestBizLayoutExtra, MultiGuestBizSpotExtra, MultiGuestLayoutExtra, MultiGuestLayoutNonSeiExtra, MultiGuestOutsideRoomInviteSource, MultiGuestSpotExtra, MultiGuestSpotNonSeiExtra, MultiLiveAnchorPanelSettings, MultiLiveContent, MultiLiveUpdateUserSettingContent, MuteStatus, NetworkState, NotifyHighlightContent, NotifyHighlightInfo, NumberConfig, OecLiveShoppingMessageV2, OecLiveShoppingMessageV2_ActionsEntry, Tag as OecMsgTag, UserInfo as OecMsgUserInfo, OfflineGameInfo, OffliveInviteInfo, OldSubscribeStatus, OnlineUserState, OpType, OperationInfo, OperationState, OptPairInfo, OptPairStatus, OwnRoom, P2PGroupChangeContent, PaddingInfo, PaidEventPreview, PartnershipDropsUpdateMessageChangeMode, PartnershipGameOfflineMessageOfflineGameInfoOfflineType, PatternRef, PatternRef_KeyGroupsEntry, PerceptionDialogIconType, PerceptionDialogInfo, PerceptionFeedbackOption, PerceptionSheetInfo, PermitApplyContent, PermitBizContent, PermitJoinGroupBizContent, PermitJoinGroupContent, PinCardType, PinMessageActionType, PlayScene, PlayUserTag, PlaybookBizExtra, PlaybookBizExtra_CustomAtomicCapabilitiesEntry, Player, PollAppealStatus, PollBasicInfo, PollEndContent, PollEndType, PollKind, PollOptionInfo, PollStartContent, PollTemplateStatus, PollUpdateVotesContent, PopCardInfo, PopProduct, PopupWindowInfo, PortraitInfo, PortraitTag, PosIdentity, PosIdentityType, Position, PrefabBundle, PreviewPeriod, PriceHideInfo, PriceItem, PrivilegeLogExtra, ProductAtmosphereTag, ProductItem, ProductSnapShot, ProfileCardPanel, ProfileContent, ProfileExtra, ProfileExtraGameInteraction, ProfileExtraGameInteractionExternal, ProfileExtraGameInteractionStorage, ProfileExtraGameTricks, ProfileExtraGameTricksExternal, ProfileExtraGameTricksStorage, ProfitRankType, Progress, ProjectionConfig, PromotionInfo, ProtoMessageFetchResult, ProtoMessageFetchResult_RouteParamsEntry, PublicAreaCommon, PublicAreaMessageCommon, PublicAreaMessageCommonCreatorSuccessInfoTopicDisplayLocation, PublicAreaMessageCommonPortraitInfoUserMetricsUserMetricsType, PunishEventInfo, PunishTypeId, PushHeader, Question, RTCBitRateMap, RTCEngineConfig, RTCExtraInfo, RTCInfoExtra, RTCLiveVideoParam, RTCMixBase, RTCOther, RTCVideoParam, RandomGiftBubble, RandomGiftPanelBanner, RandomMatchContent, RandomMatchContentUserInfo, RankAnimationInfo, RankListTabInfo, RankTabInfo, RankTextMessageRankTestMessageScene, RankUpdate, RankUserEnigmaInfo, ReceiverRestriction, RecommendComment, RecommendedPlaybookInfo, RecommendedPlaybookInfo_PlaybookBizExtrasEntry, RefreshLiveBagInfo, ReplyBizContent, ReplyInviteContent, ReplyStatus, ReqItem, ReserveInfo, ReserveReplyStatus, ResourceModel, RewardCondition, RewardPeriodConfig, RightLabel, RivalExtra, RivalExtraInfo, RivalExtraInfoAnchorLayer, RivalExtraInfoBattleInfoBattleInfoType, RivalExtraInfoInviteBlockReason, RivalExtraInfoTextType, RivalGuestExtra, RivalGuestExtras, RivalsGameTag, RoomBasedGiftData, RoomBasedGiftData_RoomBasedGiftsEntry, RoomBasedGifts, RoomNotifyMessageEventTracking, RoomNotifyMessageExtra, RtcConnectionState, SOVBriefInfo, SOVLockInfoType, SOVMaskInfo, SOVMaskInfoType, SOVPinCardInfo, SOVStatus, Scene, SceneRestriction, SchemeInfo, ScoreType, ScrollElement, SecondDegreeRelationContent, SellingPoint, SeparatorConfig, SettleInfo, ShopBrandLogo, ShopEntranceInfo, ShopLabelImage, ShowResult, ShowType, ShowcaseEntranceInfo, SimilarInterestContent, SocialGameLayoutExtra, SocialGameLayoutNonSeiExtra, SocialGameUserSpotExtra, SocialGameUserSpotNonSeiExtra, SoundWareEffectExtra, SourceType, SpecifiedDisplayText, SpotInfo, StateType, StoreIdentityLabel, StoreLabel, StoreOfficialLabel, StretchableBackgroundImage, StringBadge, SubGoalContribution, SubGoalPinCard, SubGoalPinInfo, SubOnlyVideosBriefInfo, SubPinCard, SubPinCardExtra, SubPinCardText, SubPinCardTextTextType, SubPinCardTextTextType_2, SubPinEventMessageActionType, SubSplitPeriod, SubSplitStatus, SubscribeBadge, SubscribeInfo, SubscribeType, SubscribingStatus, SupportedActionsWrapper, SystemMessage, Tag$1 as Tag, TagItem, TagType, TagV2, TagV2TagClassification, TaskPeriodConfig, TeamInfo, TeamMatchCampaign, TeamRankBonusTime, TeamUser, TeamUsersInfo, TemplateContent, TemplateEffectExtra, Text$1 as Text, TextBadge, TextEffect, TextFormat, TextPiece, TextPieceGift, TextPieceHeart, TextPieceImage, TextPiecePatternRef, TextPieceUser, TextType, TimeInfo, TimerDetail, TimerDetailAntidirtStatus, TimerDetailAuditInfo, TimerDetailAuditStatus, TimerDetailAuditTaskType, TimerStatus, Title, TitleData, TopHostInfo, Topic, TopicActionType, Topic_EventTrackingFieldsEntry, TraceInfo, TransitionConfig, TriggerCondition, UGGiftStructInfo, UnionAnimationInfo, UnionAnimationInfoType, UrlDataStruct, User, UserArmiesWrapper, UserAttr, UserAttr_AdminPermissionsEntry, UserBadge, UserBadge_IconsEntry, UserCountdownInfo, UserEcommerceEntranceCreatorType, UserEcommerceEntranceEntranceType, UserEcommerceEntranceSellingPointLiveSellingPointType, UserEcommerceEntranceShopEntranceInfoStoreLabelShopIdentityLabelType, UserEcommerceEntranceShopEntranceInfoStoreLabelStoreBrandLabelType, UserEcommerceEntranceViewVersion, UserEmoteUploadSource, UserFanTicket, UserFansClubFansClubDataUserFansClubStatus, UserGroup, UserHonor, UserIdentity, UserInfo$1 as UserInfo, UserInteractionInfo, UserMetrics, UserModelPredictionData, UserModelPredictionData_ModelPredictionDataEntry, UserPlayInfo, UserSubscribeInfoPayStatus, UserSuggestionInfo, ValidRanks, VerticalPaddingRule, VideoResource, ViewerPickAnchorParam, ViewerPicksHeaderImage, ViewerPicksInfo, VirtualWaitingUser, VoteUser, Voucher, VoucherItem, WalletPackage, WaveAlgorithmData, WebcastAccessControlMessage, WebcastAccessRecallMessage, WebcastBarrageMessage, WebcastBoostCardMessage, WebcastBottomMessage, WebcastCapsuleMessage, WebcastCaptionMessage, WebcastChatMessage, WebcastControlMessage, WebcastEmoteChatMessage, WebcastEnvelopeMessage, WebcastGameRankNotifyMessage, WebcastGiftBroadcastMessage, WebcastGiftDynamicRestrictionMessage, WebcastGiftMessage, WebcastGiftPanelUpdateMessage, WebcastGiftPromptMessage, WebcastGoalUpdateMessage, WebcastGuideMessage, WebcastHourlyRankRewardMessage, WebcastImDeleteMessage, WebcastImEnterRoomMessage, WebcastInRoomBannerMessage, WebcastLikeMessage, WebcastLinkLayerMessage, WebcastLinkMessage, WebcastLinkMicArmies, WebcastLinkMicArmies_ArmiesEntry, WebcastLinkMicBattle, WebcastLinkMicBattlePunishFinish, WebcastLinkMicBattle_AnchorMatchSettingsEntry, WebcastLinkMicBattle_BattleComboV2Entry, WebcastLinkMicBattle_BattleResultEntry, WebcastLinkMicBattle_LeagueInfoMapEntry, WebcastLinkMicBattle_LeagueScoreInfoMapEntry, WebcastLinkMicFanTicketMethod, WebcastLinkMicLayoutStateMessage, WebcastLinkMicMethod, WebcastLinkStateMessage, WebcastLinkmicBattleTaskMessage, WebcastLiveGameIntroMessage, WebcastLiveIntroMessage, WebcastMarqueeAnnouncementMessage, WebcastMemberMessage, WebcastMemberMessage_AdminPermissionsEntry, WebcastMsgDetectMessage, WebcastNoticeMessage, WebcastOecLiveShoppingMessage, WebcastPartnershipDropsUpdateMessage, WebcastPartnershipGameOfflineMessage, WebcastPartnershipPunishMessage, WebcastPerceptionMessage, WebcastPollMessage, WebcastPushFrame, WebcastQuestionNewMessage, WebcastRankTextMessage, WebcastRankUpdateMessage, WebcastRoomMessage, WebcastRoomNotifyMessage, WebcastRoomPinMessage, WebcastRoomUserSeqMessage, WebcastRoomVerifyMessage, WebcastSocialMessage, WebcastSpeakerMessage, WebcastSubNotifyMessage, WebcastSubPinEventMessage, WebcastSystemMessage, WebcastToastMessage, WebcastUnauthorizedMemberMessage, WebcastViewerPicksUpdateMessage };
|
|
7975
|
+
export { AccessControlCaptcha, ActionButton, ActionButtonType, ActivityBadgeInfo, ActivityBadgeInfo_EventTraceEntry, ActivityRewardInfo, AddToCartButton, AffiliatedInfo, AffiliatedInfoStickerShowScene, AffiliatedInfo_StickerTrackParamEntry, AgreeStatus, AllListUser, AnchorGiftModeMetaMap, AnchorGiftModeMetaMap_AnchorGiftModeMetasEntry, AnchorLayoutSetting, AnchorLayoutStyleSetting, AnchorLevel, AnchorLinkmicUserSettings, AnchorMatchSettings, AnchorPair, AnchorPanelLayoutTypeSetting, AnimationData, ApplyBizContent, ApplyContent, ArrowConfig, AssetBase, AssetBundle, AssetExtra, AssetsModel, AtmosphereInfo, AtmosphereTagInfo, AtomAction, AuctionInfo, AuctionInfo_TraceTimeMapEntry, AuctionWinnerPopup, AudioResource, AuditInfo, AuditStatus, AuditTaskType, AuthenticationInfo, Author, AvatarState, AwardCardNotice, BEFViewRenderSize, BackGroundImageState, Background, BadgeDisplayType, BadgeExhibitionType, BadgePriorityType, BadgeSceneType, BadgeStruct, BadgeText, BadgeTextPosition, BagIndex, BarrageEvent, BarrageEvent_ParamsEntry, BarrageMessageBarrageType, BarrageMessageIconDisplayType, BarrageMessageRenderType, BarrageMessageShowType, BarrageTypeEcomLiveParam, BarrageTypeFansLevelParam, BarrageTypeGiftGalleryParam, BarrageTypeSubscribeGiftParam, BarrageTypeUserGradeParam, BaseProtoMessage, BatchGiftInfo, BattleABTest, BattleABTestList, BattleABTestSetting, BattleABTestType, BattleBaseUserInfo, BattleBonusConfig, BattleBonusConfig_GiftAmountGuideEntry, BattleCardMsgType, BattleComboInfo, BattleDisplayConfig, BattleEffect, BattleEffectInfos, BattleFeatureFlags, BattleGamePlayContent, BattleGamePlayContentUserInfo, BattleInfo, BattleInviteType, BattleInviteeGiftPermission, BattlePrompt, BattlePromptElem, BattleResult, BattleResultResult, BattleRewardSettle, BattleRewardSettleRewardStatus, BattleRivalTag, BattleScene, BattleSetting, BattleSettingsBattleStatus, BattleTaskGiftAmountGuide, BattleTaskMessageType, BattleTaskSettle, BattleTaskSettleResult, BattleTaskStart, BattleTaskUpdate, BattleTeamResult, BattleTeamUser, BattleTeamUserArmies, BattleTeamUserArmies_HostVisibleRankFromTeamIdEntry, BattleType, BattleUserArmies, BattleUserArmy, BattleUserInfo, BattleUserInfoWrapper, BattleUserSettings, BestTeammateRelation, BidPanel, BillboardDisplayResult, BillboardInfo, BillboardInfo_DaInfoEntry, BizLayoutState, BizSpotExtra, BizSpotInfo, BizType, BoostCard, BorderInfo, BusinessContent, ByteRTCExtInfo, CampaignBannerDisplay, CampaignBannerDisplayResult, CampaignBannerDisplay_DaInfoEntry, CancelApplyContent, CancelInviteContent, CancelJoinGroupContent, CapsuleBizParams, CapsuleBizParamsAnchorPinPerk, CapsuleBizParamsCohost, CapsuleBizParamsCommentFlaggedPrompt, CapsuleBizParamsCommentFlaggedPromptForNewUser, CapsuleBizParamsCommentMuteRulePrompt, CapsuleBizParamsEcom, CapsuleBizParamsEcomEventTracking, CapsuleBizParamsGamingModeratorsCommentGuide, CapsuleBizParamsModeratorGuide, CapsuleBizParamsMultiGuestApplyGuide, CapsuleBizParamsMultiGuestInviteGuide, CapsuleBizParamsNewAnchorEffect, CapsuleBizParamsRandomGift, CaptionContent, CardObtainGuide, CarouselCfg, ClassInfo, ClassType, CoHostBizLayoutExtra, CoHostBizSpotExtra, CoHostPermissoinType, CohostABInfo, CohostABTest, CohostABTestList, CohostABTestSetting, CohostABTestType, CohostContent, CohostContentGuideInfo, CohostLayoutMode, CohostListChangeContent, CohostListUser, CohostMode, CohostNudgeInfo, CohostStreamConfig, CohostTopic, CohostTypeLayoutExtra, CohostTypeLayoutNonSeiExtra, CohostTypeSpotExtra, CohostTypeSpotNonSeiExtra, CohostUserInfo, ColorGroup, ColorPickerInfo, CombineBadgeBackground, CombineBadgeStruct, ComboBadgeInfo, CommentLabelScore, CommentQualityScore, CommentTag, CommerceInfo, CommerceInfo_ProductInfoEntry, CommerceInfo_VoucherInfoEntry, CommonCardInfo, CommonMessageData, CommunityActiveDecoration, CommunityActiveDecoration_ImagesEntry, CommunityHeartMeInfo, CommunityHeartMeInfo_SlotsEntry, Content, ContentInviteSource, ContentPosition, ContentPositionType, ContentSource, Contributor, ControlAction, ControlChaosInfo, CreateChannelContent, CreatorScoreDisplayInfo, CreatorScoreLabelInfo, CreatorScoreProfile, CreatorScoreProfile_ScoreInfoExtraEntry, CreatorSuccessInfo, CriticalStrikeCardInfo, CrossScreenEffectInfo, CrossScreenEffectInfo_ActionEffectIdsEntry, CrossScreenEffectInfo_ReactionEffectIdsEntry, CrossScreenEffectInfo_SingleActionEffectIdsEntry, DSLConfig, DelayParam, Detail, DetailBlockReason, DiffInfo, DispersionInfo, DispersionParam, DisplayControl, DisplayControlHorizontalOnclickTriggerType, DisplayControl_TargetGroupShowRstEntry, DisplayStatus, DisplayStyle, DistributionStrategy, DynamicRestriction, EasterEgg, EcomLiveElementActions, EcommerceEntrance, EffectConfigBean, EffectStruct, EmoteWithIndex as EmojiEmoteWithIndex, EmoteModel, EmoteModelAuditInfo, EmotePrivateType, EmoteScene, EmoteType, EmoteUploadInfo, EnhancementText, EnhancementTextInfo, EnigmaBattleExtraInfo, EnigmaBattleSetting, EnigmaInfo, EntranceGroupType, EnvelopeBusinessType, EnvelopeDisplay, EnvelopeEnigmaInfo, EnvelopeFollowShowStatus, EventUserInfo, ExemptStrategy, ExhibitionType, ExtendAuctionCfg, Extra, ExtraTimeCardInfo, FaceRecognitionMeta, FanTicketRoomNoticeContent, FansClubData, FansClubInfo, FansClubMember, FansClubMember_PreferDataEntry, FinishChannelContent, FlashSaleAtmosphere, FlashSaleAtmosphereInfo, FlashSaleEnhancementInfo, FlashSaleStock, FlyingMicResources, FollowInfo, FontStyle, FrequencyControl, GalleryData, GalleryData_ProgressEntry, GameAction, GameActionType, GamePlayContent, GameRankNotifyMessageMsgType, GameTricksShortcut, GamepadTaskType, Gift, GiftBoxInfo, GiftColorInfo, GiftEffect, GiftEffectCrossScreenStickerSpec, GiftEffectCrossScreenStickerSpec_ActionAssetIdsEntry, GiftEffectCrossScreenStickerSpec_ReactionAssetIdsEntry, GiftEffectCrossScreenStickerSpec_SingleActionAssetIdsEntry, GiftEffectLynxSpec, GiftEffectPrefabSpec, GiftEffectSerialSpec, GiftEffectSpecs, GiftEffectStreamSpec, GiftEffect_EventTrackingParamsEntry, GiftGalleryBadgeInfo, GiftGalleryBadgeSection, GiftIMPriority, GiftInfo, GiftInfoInBox, GiftLockInfo, GiftMessageIgnoreConfig, GiftMessageVersion, GiftModeMeta, GiftModeMetaList, GiftModeMetaV2, GiftModeMetaV2_AnchorGiftModeMetaByTypeEntry, GiftMonitorInfo, GiftPanelBanner, GiftPanelBeaconBubble, GiftPanelBeaconBubbleType, GiftPermissionType, GiftPick, GiftPickExtra, GiftPickExtraGameInteraction, GiftPickExtraGameInteractionExternal, GiftPickExtraGameInteractionStorage, GiftPickExtraGameTricks, GiftPickExtraGameTricksExternal, GiftPickExtraGameTricksStorage, GiftPickWithScore, GiftRandomEffectInfo, GiftResource, GiftSeriesInfo, GiftShowType, GiftSkin, GiftSkinToGiftTextsInfo, GiftSource, GiftSponsorInfo, GiftStructSchemeGiftType, GiftText, GiftTrayInfo, GiftTrayStyle, Gift_BizExtraEntry, Gift_GiftResourcesEntry, Gift_TrackerParamsEntry, GiftsBoxInfo, GoalComparison, GoalData, GoalData_GoalProgressEntry, GoalMessageSource, GoalPinInfo, GoalReward, GoalStats, GradeIcon, GroupChangeContent, GroupChannelAllUser, GroupChannelUser, GroupPlayer, GroupStatus, GuestMicCameraChangeScene, GuestMicCameraManageOp, GuestUserInfo, GuideMessageFrequencyRule, Hashtag, HashtagNamespace, HeartBeatMessage, HighScoreControlCfg, HitABStatus, HorizontalPaddingRule, HotKey, HotTag, HourlyRankRewardInfo, IceShowdownSetting, IconConfig, ImageBadge, ImageModel, Img, InteractiveGiftInfo, InvitationReorderExtra, InviteBizContent, InviteContent, InviteTopHostInfo, InviterRivalExtra, JoinDirectBizContent, JoinDirectContent, JoinGroupBizContent, JoinGroupBizContent_AbInfosEntry, JoinGroupContent, JoinGroupDirectBizContent, JoinGroupDirectContent, JoinGroupMessageExtra, JoinGroupMessageExtra_RivalGuestsMapEntry, JoinRoomDirectBizContent, JoinRoomDirectContent, JoinType, JumpPage, JustDanceExtra, JustDanceLayoutExtra, KeyBoardHotKey, KickOutBizContent, KickOutContent, KickoutReason, LabelConfig, LayoutData, LayoutEnlargeStatus, LayoutState, LayoutStyle, LeagueScoreInfo, LeaveContent, LeaveJoinGroupContent, LikeEffect, LinkEnvelopeContent, LinkEnvelopeMessagePayload, LinkLayerListUser, LinkLayerMessageType, LinkListChangeContent, LinkListStatus, LinkListUser, LinkMicArmiesTriggerReason, LinkMicAudienceInviteGuide, LinkMicAudienceNoticeText, LinkMicAudienceTurnOnGuide, LinkMicBattleBattleAction, LinkMicBattlePunishFinishReason, LinkMicGiftGalleryDisplayText, LinkMicUserAdminType, LinkPosition, LinkRoleType, LinkSilenceStatus, LinkType, LinkUserIdentity, LinkUserState, LinkUserType, LinkedListChangeContent, LinkerAcceptNoticeContent, LinkerCancelContent, LinkerCloseContent, LinkerCreateContent, LinkerEnterContent, LinkerInfo, LinkerInviteContent, LinkerInviteContent_RtcExtInfoMapEntry, LinkerInviteMessageExtra, LinkerKickOutContent, LinkerLeaveContent, LinkerListChangeContent, ListUser as LinkerListUser, LinkerMediaChangeContent, LinkerMediaChangeOperator, LinkerMicIdxUpdateContent, LinkerMicIdxUpdateInfo, LinkerMode, LinkerMuteContent, LinkerRandomMatchContent, LinkerReplyContent, LinkerReplyContent_ApplierMicIdxInfoMapEntry, LinkerReplyContent_RtcExtInfoMapEntry, LinkerSetting, LinkerSysKickOutContent, LinkerUpdateUserContent, LinkerUpdateUserContent_UpdateInfoEntry, LinkerUserType, LinkerWaitingListChangeContent, LinkmicApplierSortSetting, LinkmicAudienceApplyGuide, LinkmicAudienceInviteGroupChatMemberGuide, LinkmicDisplayText, LinkmicDisplayTextPieces, LinkmicGiftExpressionStrategy, LinkmicInfo, LinkmicMultiLiveEnum, LinkmicPlayType, LinkmicReplyType, LinkmicShareRevenueSetting, LinkmicShareRevenueSettingStruct, LinkmicStatus, LinkmicUserInfo, LinkmicUserSettingDisableVideoLinkmic, LinkmicUserSettingLayout, LinkmicUserSettingMultiGuestApplyAutoApprove, LinkmicUserSettingShowAction, LinkmicUserStatus, LinkmicUserToastContent, ListChangeBizContent, ListChangeBizContent_AbInfosEntry, ListChangeBizContent_GuestUserInfosEntry, ListChangeBizContent_UserInfosEntry, LiveEventInfo, LiveEventInfoEventPayMethod, LiveEventInfo_WalletPkgDictEntry, LiveFlashSaleInfo, LiveMessageID, LiveMessageSEI, LivePermissionInfo, LiveStreamGoal, LiveStreamGoalContributor, LiveStreamGoalIndicator, LiveStreamSubGoal, LiveStreamSubGoalGift, LokiExtraContent, LynxCrossScreenEffectInfo, LynxGiftExtra, MatchGameplayOption, MatchInfo, MatchInfoMultiplierType, MatchInvitePanelConfig, MatchOpeningAnimationConfig, MatchPunishEffectInfo, MatchPunishEffectInfo_EffectToEffectStructMapEntry, MatchPunishEffectInfo_UserToEffectMapEntry, MatchPunishExtraInfo, MatchThemeDisplayResource, MatchTitleBarConfig, MatchTitleBarDisplayRule, MatchTitleBarTrigger, MediaState, MemberMessageAction, Text as MessageCommonText, MessageDisplayInfo, MessageDisplayStyle, MessageEntity, FlashSaleEnhancementInfo$1 as MessageFlashSaleEnhancementInfo, MessageRedEnvelopInfo, SponsorshipInfo as MessageSponsorshipInfo, MessageType, UserInfo as MessageUserInfo, MicIdxOperation, MicPositionData, MigrationDetails, AnchorInfo as ModelAnchorInfo, AuthenticationInfo$1 as ModelAuthenticationInfo, MouseHotKey, MsgFilter, MsgMeta, MultiGuestBizLayoutExtra, MultiGuestBizSpotExtra, MultiGuestLayoutExtra, MultiGuestLayoutNonSeiExtra, MultiGuestOutsideRoomInviteSource, MultiGuestSpotExtra, MultiGuestSpotNonSeiExtra, MultiLiveAnchorPanelSettings, MultiLiveContent, MultiLiveUpdateUserSettingContent, MusicGiftInfo, MuteStatus, NetworkState, NotifyHighlightContent, NotifyHighlightInfo, NumberConfig, OecLiveShoppingMessageV2, OecLiveShoppingMessageV2_ActionsEntry, Tag as OecMsgTag, UserInfo$1 as OecMsgUserInfo, OfflineGameInfo, OffliveInviteInfo, OldSubscribeStatus, OnlineUserState, OpType, OperationInfo, OperationState, OptPairInfo, OptPairStatus, OwnRoom, P2PGroupChangeContent, PaddingInfo, PaidEventPreview, PartnershipDropsUpdateMessageChangeMode, PartnershipGameOfflineMessageOfflineGameInfoOfflineType, PatternRef, PatternRef_KeyGroupsEntry, PerceptionDialogIconType, PerceptionDialogInfo, PerceptionFeedbackOption, PerceptionSheetInfo, PermitApplyContent, PermitBizContent, PermitJoinGroupBizContent, PermitJoinGroupContent, PinCardType, PinMessageActionType, PlaceholderInfo, PlayScene, PlayUserTag, PlaybookBizExtra, PlaybookBizExtra_CustomAtomicCapabilitiesEntry, Player, PollAppealStatus, PollBasicInfo, PollEndContent, PollEndType, PollKind, PollOptionInfo, PollStartContent, PollTemplateStatus, PollUpdateVotesContent, PopCardInfo, PopProduct, PopUpInfo, PopupWindowInfo, PortraitInfo, PortraitTag, PosIdentity, PosIdentityExtra, PosIdentityType, Position, PotionCardInfo, PrefabBundle, PreviewPeriod, PriceHideInfo, PriceItem, PrivilegeLogExtra, ProductAtmosphereTag, ProductItem, ProductSnapShot, ProfileCardPanel, ProfileContent, ProfileExtra, ProfileExtraGameInteraction, ProfileExtraGameInteractionExternal, ProfileExtraGameInteractionStorage, ProfileExtraGameTricks, ProfileExtraGameTricksExternal, ProfileExtraGameTricksStorage, ProfitRankType, Progress, ProjectionConfig, PromotionInfo, ProtoMessageFetchResult, ProtoMessageFetchResult_RouteParamsEntry, PublicAreaCommon, PublicAreaMessageCommon, PublicAreaMessageCommonCreatorSuccessInfoTopicDisplayLocation, PublicAreaMessageCommonPortraitInfoUserMetricsUserMetricsType, PunishEventInfo, PunishTypeId, PushHeader, Question, QuickCohostInviteeUserInfo, RTCBitRateMap, RTCEngineConfig, RTCExtraInfo, RTCInfoExtra, RTCLiveVideoParam, RTCMixBase, RTCOther, RTCVideoParam, RandomGiftBubble, RandomGiftPanelBanner, RandomMatchContent, RandomMatchContentUserInfo, RankAnimationInfo, RankListTabInfo, RankTabInfo, RankTextMessageRankTestMessageScene, RankUpdate, RankUserEnigmaInfo, ReceiverRestriction, RecommendComment, RecommendedPlaybookInfo, RecommendedPlaybookInfo_PlaybookBizExtrasEntry, RefreshLiveBagInfo, ReplyBizContent, ReplyInviteContent, ReplyStatus, ReqItem, ReserveInfo, ReserveReplyStatus, ResolutionDemandPayload, ResourceModel, RewardCondition, RewardPeriodConfig, RightLabel, RivalExtra, RivalExtraInfo, RivalExtraInfoAnchorLayer, RivalExtraInfoBattleInfoBattleInfoType, RivalExtraInfoInviteBlockReason, RivalExtraInfoTextType, RivalGuestExtra, RivalGuestExtras, RivalsGameTag, RoomBasedGiftData, RoomBasedGiftData_RoomBasedGiftsEntry, RoomBasedGifts, RoomNotifyMessageEventTracking, RoomNotifyMessageExtra, RtcConnectionState, SOVBriefInfo, SOVLockInfoType, SOVMaskInfo, SOVMaskInfoType, SOVPinCardInfo, SOVStatus, Scene, SceneRestriction, SchemeInfo, ScoreType, ScrollElement, SecondDegreeRelationContent, SecondaryEffectInfo, SellingPoint, SeparatorConfig, SettleInfo, ShopBrandLogo, ShopEntranceInfo, ShopLabelImage, ShowResult, ShowType, ShowcaseEntranceInfo, SimilarInterestContent, SmokeCardInfo, SocialGameLayoutExtra, SocialGameLayoutNonSeiExtra, SocialGameUserSpotExtra, SocialGameUserSpotNonSeiExtra, SoundWareEffectExtra, SourceType, SpecialEffectCardInfo, SpecialEffectNotice, SpecifiedDisplayText, SpotInfo, StateType, StoreIdentityLabel, StoreLabel, StoreOfficialLabel, StretchableBackgroundImage, StringBadge, SubGoalContribution, SubGoalPinCard, SubGoalPinInfo, SubOnlyVideosBriefInfo, SubPinCard, SubPinCardExtra, SubPinCardText, SubPinCardTextTextType, SubPinCardTextTextType_2, SubPinEventMessageActionType, SubSplitPeriod, SubSplitStatus, SubscribeBadge, SubscribeInfo, SubscribeType, SubscribingStatus, SubtitleSettings, SupportedActionsWrapper, SystemMessage, Tag$1 as Tag, TagItem, TagItem_EventTrackingFieldsEntry, TagType, TagV2, TagV2TagClassification, TaskPeriodConfig, TeamInfo, TeamMatchCampaign, TeamRankBonusTime, TeamUser, TeamUsersInfo, TemplateContent, TemplateEffectExtra, Text$1 as Text, TextBadge, TextEffect, TextFormat, TextPiece, TextPieceGift, TextPieceHeart, TextPieceImage, TextPiecePatternRef, TextPieceUser, TextType, TimeInfo, TimerDetail, TimerDetailAntidirtStatus, TimerDetailAuditInfo, TimerDetailAuditStatus, TimerDetailAuditTaskType, TimerStatus, Title, TitleBarDisplayResource, TitleData, Top2CardInfo, Top3CardInfo, TopHostInfo, Topic, TopicActionType, Topic_EventTrackingFieldsEntry, TraceInfo, TransitionConfig, TriggerCondition, UGGiftStructInfo, UnionAnimationInfo, UnionAnimationInfoType, UrlDataStruct, UseCriticalStrikeCard, UseExtraTimeCard, UsePotionCard, UseSmokeCard, UseSpecialEffectCard, UseTop2Card, UseTop3Card, UseVaultGloveCard, UseWaveCard, User, UserArmiesWrapper, UserAttr, UserAttr_AdminPermissionsEntry, UserBadge, UserBadge_IconsEntry, UserCountdownInfo, UserEcommerceEntranceCreatorType, UserEcommerceEntranceEntranceType, UserEcommerceEntranceSellingPointLiveSellingPointType, UserEcommerceEntranceShopEntranceInfoStoreLabelShopIdentityLabelType, UserEcommerceEntranceShopEntranceInfoStoreLabelStoreBrandLabelType, UserEcommerceEntranceViewVersion, UserEmoteUploadSource, UserFanTicket, UserFansClubFansClubDataUserFansClubStatus, UserGroup, UserHonor, UserIdentity, UserInfo$2 as UserInfo, UserInteractionInfo, UserMetrics, UserModelPredictionData, UserModelPredictionData_ModelPredictionDataEntry, UserPlayInfo, UserSubscribeInfoPayStatus, UserSuggestionInfo, ValidRanks, VaultGloveCardInfo, VerticalPaddingRule, VideoResource, ViewerPickAnchorParam, ViewerPicksHeaderImage, ViewerPicksInfo, VirtualWaitingUser, VoteUser, Voucher, VoucherItem, WalletPackage, WaveAlgorithmData, WaveCardInfo, WebcastAccessControlMessage, WebcastAccessRecallMessage, WebcastBarrageMessage, WebcastBoostCardMessage, WebcastBottomMessage, WebcastCapsuleMessage, WebcastCaptionMessage, WebcastChatMessage, WebcastControlMessage, WebcastEmoteChatMessage, WebcastEnvelopeMessage, WebcastGameRankNotifyMessage, WebcastGiftBroadcastMessage, WebcastGiftDynamicRestrictionMessage, WebcastGiftMessage, WebcastGiftPanelUpdateMessage, WebcastGiftPromptMessage, WebcastGoalUpdateMessage, WebcastGuideMessage, WebcastHourlyRankRewardMessage, WebcastImDeleteMessage, WebcastImEnterRoomMessage, WebcastInRoomBannerMessage, WebcastLikeMessage, WebcastLinkLayerMessage, WebcastLinkMessage, WebcastLinkMicArmies, WebcastLinkMicArmies_ArmiesEntry, WebcastLinkMicBattle, WebcastLinkMicBattleItemCard, WebcastLinkMicBattlePunishFinish, WebcastLinkMicBattle_AnchorMatchSettingsEntry, WebcastLinkMicBattle_BattleComboV2Entry, WebcastLinkMicBattle_BattleResultEntry, WebcastLinkMicBattle_LeagueInfoMapEntry, WebcastLinkMicBattle_LeagueScoreInfoMapEntry, WebcastLinkMicBattle_TrackingExtraEntry, WebcastLinkMicFanTicketMethod, WebcastLinkMicLayoutStateMessage, WebcastLinkMicMethod, WebcastLinkStateMessage, WebcastLinkmicBattleTaskMessage, WebcastLiveGameIntroMessage, WebcastLiveIntroMessage, WebcastMarqueeAnnouncementMessage, WebcastMemberMessage, WebcastMemberMessage_AdminPermissionsEntry, WebcastMsgDetectMessage, WebcastNoticeMessage, WebcastOecLiveShoppingMessage, WebcastPartnershipDropsUpdateMessage, WebcastPartnershipGameOfflineMessage, WebcastPartnershipPunishMessage, WebcastPerceptionMessage, WebcastPollMessage, WebcastPushFrame, WebcastQuestionNewMessage, WebcastRankTextMessage, WebcastRankUpdateMessage, WebcastRoomMessage, WebcastRoomNotifyMessage, WebcastRoomPinMessage, WebcastRoomUserSeqMessage, WebcastRoomVerifyMessage, WebcastSocialMessage, WebcastSpeakerMessage, WebcastSubNotifyMessage, WebcastSubPinEventMessage, WebcastSystemMessage, WebcastToastMessage, WebcastUnauthorizedMemberMessage, WebcastViewerPicksUpdateMessage };
|