polyv-live-api-sdk 1.0.19 → 1.0.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +303 -97
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +110 -24
- package/dist/index.js +303 -97
- package/dist/index.js.map +1 -1
- package/dist/services/channel.service.d.ts +4 -3
- package/dist/services/channel.service.d.ts.map +1 -1
- package/dist/services/chat.service.d.ts +1 -1
- package/dist/services/chat.service.d.ts.map +1 -1
- package/dist/services/live-interaction.service.d.ts.map +1 -1
- package/dist/services/player.service.d.ts +1 -1
- package/dist/services/player.service.d.ts.map +1 -1
- package/dist/services/v4/ai.service.d.ts.map +1 -1
- package/dist/services/v4/channel.service.d.ts +11 -5
- package/dist/services/v4/channel.service.d.ts.map +1 -1
- package/dist/services/v4/global.service.d.ts.map +1 -1
- package/dist/services/v4/robot.service.d.ts.map +1 -1
- package/dist/services/v4/user.service.d.ts.map +1 -1
- package/dist/services/v4/webapp.service.d.ts.map +1 -1
- package/dist/services/web.service.d.ts +1 -1
- package/dist/services/web.service.d.ts.map +1 -1
- package/dist/types/channel.d.ts +20 -7
- package/dist/types/channel.d.ts.map +1 -1
- package/dist/types/chat-censor-role.d.ts +5 -3
- package/dist/types/chat-censor-role.d.ts.map +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/player.d.ts +4 -2
- package/dist/types/player.d.ts.map +1 -1
- package/dist/types/v4-channel.d.ts +53 -6
- package/dist/types/v4-channel.d.ts.map +1 -1
- package/dist/types/web.d.ts +4 -0
- package/dist/types/web.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1494,10 +1494,34 @@ interface RecordMergeResponse {
|
|
|
1494
1494
|
}
|
|
1495
1495
|
/**
|
|
1496
1496
|
* Record Add Breakpoint Request
|
|
1497
|
+
*
|
|
1498
|
+
* Backed by `POST /live/v3/channel/record/add-breakpoint`. Controls an
|
|
1499
|
+
* in-progress recording: `type` pauses or resumes it. Only effective while the
|
|
1500
|
+
* channel is live.
|
|
1497
1501
|
*/
|
|
1498
1502
|
interface RecordAddBreakpointRequest {
|
|
1499
|
-
|
|
1500
|
-
|
|
1503
|
+
/** Breakpoint type: pause (暂停录制) or resume (继续录制) */
|
|
1504
|
+
type: 'pause' | 'resume';
|
|
1505
|
+
/** Whether to pause from the very start of the recording (Y/N, pause only) */
|
|
1506
|
+
fromStartStop?: 'Y' | 'N';
|
|
1507
|
+
}
|
|
1508
|
+
/**
|
|
1509
|
+
* Record Merge MP4 Request
|
|
1510
|
+
*
|
|
1511
|
+
* Backed by `POST /live/v3/channel/record/merge-mp4` and
|
|
1512
|
+
* `POST /live/v3/channel/record/merge-mp4-start`. Recordings are selected by a
|
|
1513
|
+
* creation-time window (startTime/endTime, 13-digit ms timestamps, span ≤ 8h),
|
|
1514
|
+
* not by file ids.
|
|
1515
|
+
*/
|
|
1516
|
+
interface RecordMergeMp4Request {
|
|
1517
|
+
/** Recording creation-time lower bound, 13-digit ms timestamp (required) */
|
|
1518
|
+
startTime: string;
|
|
1519
|
+
/** Recording creation-time upper bound, 13-digit ms timestamp (required) */
|
|
1520
|
+
endTime: string;
|
|
1521
|
+
/** Merged file name (≤ 64 chars) */
|
|
1522
|
+
fileName?: string;
|
|
1523
|
+
/** Completion callback URL */
|
|
1524
|
+
callbackUrl?: string;
|
|
1501
1525
|
}
|
|
1502
1526
|
/**
|
|
1503
1527
|
* Add VOD Playback Request
|
|
@@ -6444,16 +6468,60 @@ interface GroupViewerInfo {
|
|
|
6444
6468
|
/** Added time */
|
|
6445
6469
|
addedTime: number;
|
|
6446
6470
|
}
|
|
6471
|
+
/** A single interaction listener task rule (see tasks params of interaction-event/save). */
|
|
6472
|
+
interface InteractionEventSaveTask {
|
|
6473
|
+
/** Task condition type: onlineTime|signCount|speakCount|customCount|loginList|taskEndTimeOnline */
|
|
6474
|
+
type: string;
|
|
6475
|
+
/** Start time (13-digit ms epoch) */
|
|
6476
|
+
startTime: number;
|
|
6477
|
+
/** End time (13-digit ms epoch) */
|
|
6478
|
+
endTime: number;
|
|
6479
|
+
/** Online duration in ms (type=onlineTime) */
|
|
6480
|
+
onlineTime?: number;
|
|
6481
|
+
/** Sign-in count (type=signCount) */
|
|
6482
|
+
signCount?: number;
|
|
6483
|
+
/** User tags */
|
|
6484
|
+
userTags?: unknown[];
|
|
6485
|
+
/** Comment count (type=speakCount) */
|
|
6486
|
+
speakCount?: number;
|
|
6487
|
+
/** Comment content (type=speakCount) */
|
|
6488
|
+
speakContent?: string;
|
|
6489
|
+
/** Custom count (type=customCount) */
|
|
6490
|
+
customCount?: number;
|
|
6491
|
+
/** Event type (type=customCount) */
|
|
6492
|
+
eventType?: string;
|
|
6493
|
+
/** Payload (<=500 chars) */
|
|
6494
|
+
payload?: string;
|
|
6495
|
+
}
|
|
6447
6496
|
/**
|
|
6448
6497
|
* Parameters for saving interaction event
|
|
6449
6498
|
*/
|
|
6450
6499
|
interface InteractionEventSaveParams {
|
|
6451
6500
|
/** Channel ID */
|
|
6452
6501
|
channelId: string;
|
|
6453
|
-
/**
|
|
6454
|
-
|
|
6455
|
-
/**
|
|
6456
|
-
|
|
6502
|
+
/** Task rule list */
|
|
6503
|
+
tasks: InteractionEventSaveTask[];
|
|
6504
|
+
/** Whether all tasks must complete to count the activity done: Y or N */
|
|
6505
|
+
allDone: 'Y' | 'N';
|
|
6506
|
+
/** Callback URL */
|
|
6507
|
+
callbackUrl?: string;
|
|
6508
|
+
/** Payload */
|
|
6509
|
+
payload?: string;
|
|
6510
|
+
}
|
|
6511
|
+
/** Response data for saving interaction event (the unwrapped `data` field). */
|
|
6512
|
+
interface InteractionEventSaveResponse {
|
|
6513
|
+
/** Activity ID (pass to delete as a taskId when allDone=Y) */
|
|
6514
|
+
activityId: string;
|
|
6515
|
+
/** Per-task creation results */
|
|
6516
|
+
list: Array<{
|
|
6517
|
+
taskId: string;
|
|
6518
|
+
result: {
|
|
6519
|
+
status: string;
|
|
6520
|
+
message: string;
|
|
6521
|
+
code: number;
|
|
6522
|
+
data: unknown;
|
|
6523
|
+
};
|
|
6524
|
+
}>;
|
|
6457
6525
|
}
|
|
6458
6526
|
/**
|
|
6459
6527
|
* Parameters for deleting interaction event
|
|
@@ -6461,8 +6529,11 @@ interface InteractionEventSaveParams {
|
|
|
6461
6529
|
interface InteractionEventDeleteParams {
|
|
6462
6530
|
/** Channel ID */
|
|
6463
6531
|
channelId: string;
|
|
6464
|
-
/**
|
|
6465
|
-
|
|
6532
|
+
/**
|
|
6533
|
+
* Task ID collection. When the activity was saved with allDone=Y, pass the
|
|
6534
|
+
* activityId; when allDone=N, pass the specific taskIds to delete.
|
|
6535
|
+
*/
|
|
6536
|
+
taskIds: string[];
|
|
6466
6537
|
}
|
|
6467
6538
|
/**
|
|
6468
6539
|
* Parameters for creating inviter
|
|
@@ -12042,9 +12113,11 @@ type HeadAdvertType = 'NONE' | 'IMAGE' | 'FLV';
|
|
|
12042
12113
|
interface HeadAdvertParams {
|
|
12043
12114
|
/** Head advert type: "NONE", "IMAGE", or "FLV" */
|
|
12044
12115
|
headAdvertType: HeadAdvertType;
|
|
12045
|
-
/** Head advert
|
|
12116
|
+
/** Head advert media URL (广告地址, for IMAGE/FLV type) */
|
|
12117
|
+
headAdvertMediaUrl?: string;
|
|
12118
|
+
/** @deprecated Use headAdvertMediaUrl instead. */
|
|
12046
12119
|
headAdvertImage?: string;
|
|
12047
|
-
/**
|
|
12120
|
+
/** @deprecated Use headAdvertMediaUrl instead. */
|
|
12048
12121
|
headAdvertFlv?: string;
|
|
12049
12122
|
/** Head advert href (click URL) */
|
|
12050
12123
|
headAdvertHref?: string;
|
|
@@ -13596,6 +13669,8 @@ interface DirectAuthResponse {
|
|
|
13596
13669
|
interface GetRecordFieldParams {
|
|
13597
13670
|
/** Channel ID (required) */
|
|
13598
13671
|
channelId: string;
|
|
13672
|
+
/** Condition rank: 1 for primary watch condition, 2 for secondary (defaults to 1) */
|
|
13673
|
+
rank?: number;
|
|
13599
13674
|
}
|
|
13600
13675
|
/**
|
|
13601
13676
|
* Record field response
|
|
@@ -13689,6 +13764,8 @@ interface EnrollListResponse {
|
|
|
13689
13764
|
interface DownloadRecordInfoParams {
|
|
13690
13765
|
/** Channel ID (required) */
|
|
13691
13766
|
channelId: string;
|
|
13767
|
+
/** Condition rank: 1 for primary watch condition, 2 for secondary (defaults to 1; affects export table header) */
|
|
13768
|
+
rank?: number;
|
|
13692
13769
|
}
|
|
13693
13770
|
/**
|
|
13694
13771
|
* Update auth URL parameters
|
|
@@ -14266,7 +14343,8 @@ declare class ChannelService {
|
|
|
14266
14343
|
* Update teacher document relation
|
|
14267
14344
|
*
|
|
14268
14345
|
* Adds or removes the binding between a teacher and documents.
|
|
14269
|
-
* Note: fileIds is passed in the body
|
|
14346
|
+
* Note: fileIds is passed in the request body as application/x-www-form-urlencoded
|
|
14347
|
+
* (NOT signed), while teacherId/operation are query-string parameters that ARE signed.
|
|
14270
14348
|
*
|
|
14271
14349
|
* @param teacherId - The teacher ID
|
|
14272
14350
|
* @param fileIds - File IDs, comma-separated
|
|
@@ -15058,7 +15136,7 @@ declare class ChannelService {
|
|
|
15058
15136
|
* });
|
|
15059
15137
|
* ```
|
|
15060
15138
|
*/
|
|
15061
|
-
recordMergeMp4(channelId: string, options:
|
|
15139
|
+
recordMergeMp4(channelId: string, options: RecordMergeMp4Request): Promise<RecordMergeResponse>;
|
|
15062
15140
|
/**
|
|
15063
15141
|
* Record merge MP4 start
|
|
15064
15142
|
*
|
|
@@ -15076,7 +15154,7 @@ declare class ChannelService {
|
|
|
15076
15154
|
* });
|
|
15077
15155
|
* ```
|
|
15078
15156
|
*/
|
|
15079
|
-
recordMergeMp4Start(channelId: string, options:
|
|
15157
|
+
recordMergeMp4Start(channelId: string, options: RecordMergeMp4Request): Promise<boolean>;
|
|
15080
15158
|
/**
|
|
15081
15159
|
* Record add breakpoint
|
|
15082
15160
|
*
|
|
@@ -16484,7 +16562,9 @@ interface GetAdminInfoResponse {
|
|
|
16484
16562
|
}
|
|
16485
16563
|
/**
|
|
16486
16564
|
* Update admin info request parameters
|
|
16487
|
-
* Note: avatar
|
|
16565
|
+
* Note: avatar is a required multipart file upload (jpg/jpeg/png, <=2Mb).
|
|
16566
|
+
* Only appId, timestamp, nickname and actor participate in the signature;
|
|
16567
|
+
* the avatar file is submitted as a binary stream and is not signed.
|
|
16488
16568
|
*/
|
|
16489
16569
|
interface UpdateAdminInfoParams {
|
|
16490
16570
|
/** 频道号 */
|
|
@@ -16493,8 +16573,8 @@ interface UpdateAdminInfoParams {
|
|
|
16493
16573
|
nickname: string;
|
|
16494
16574
|
/** 管理员头衔,长度不能超过4 */
|
|
16495
16575
|
actor: string;
|
|
16496
|
-
/**
|
|
16497
|
-
avatar
|
|
16576
|
+
/** 管理员头像文件(File/Blob/Buffer),支持jpg、jpeg、png三种格式,大小不能超过2Mb */
|
|
16577
|
+
avatar: Blob | File | Buffer;
|
|
16498
16578
|
}
|
|
16499
16579
|
/**
|
|
16500
16580
|
* Update admin info response
|
|
@@ -16905,7 +16985,7 @@ declare class ChatService {
|
|
|
16905
16985
|
* channelId: '123456',
|
|
16906
16986
|
* nickname: '管理员',
|
|
16907
16987
|
* actor: '管理员1',
|
|
16908
|
-
* avatar:
|
|
16988
|
+
* avatar: avatarFile,
|
|
16909
16989
|
* });
|
|
16910
16990
|
* console.log(result.data);
|
|
16911
16991
|
* ```
|
|
@@ -18451,7 +18531,7 @@ declare class WebService {
|
|
|
18451
18531
|
*
|
|
18452
18532
|
* @example
|
|
18453
18533
|
* ```typescript
|
|
18454
|
-
* const result = await client.web.getRecordField({ channelId: '123456' });
|
|
18534
|
+
* const result = await client.web.getRecordField({ channelId: '123456', rank: 1 });
|
|
18455
18535
|
* console.log(result.infoFields);
|
|
18456
18536
|
* ```
|
|
18457
18537
|
*/
|
|
@@ -19205,7 +19285,7 @@ declare class PlayerService {
|
|
|
19205
19285
|
* ```typescript
|
|
19206
19286
|
* await client.player.updateHeadAdvert(123456, {
|
|
19207
19287
|
* headAdvertType: 'IMAGE',
|
|
19208
|
-
*
|
|
19288
|
+
* headAdvertMediaUrl: 'https://example.com/ad.jpg',
|
|
19209
19289
|
* });
|
|
19210
19290
|
* ```
|
|
19211
19291
|
*/
|
|
@@ -20867,17 +20947,23 @@ declare class V4ChannelService {
|
|
|
20867
20947
|
*/
|
|
20868
20948
|
groupViewerList(params: GroupViewerListParams): Promise<GroupViewerInfo[]>;
|
|
20869
20949
|
/**
|
|
20870
|
-
* Save interaction event
|
|
20950
|
+
* Save interaction event (create one or more interaction listener tasks).
|
|
20951
|
+
*
|
|
20952
|
+
* The body carries channelId/tasks/allDone (plus optional callbackUrl/payload);
|
|
20953
|
+
* only appId/timestamp are signed (query), the JSON body is unsigned.
|
|
20871
20954
|
*
|
|
20872
20955
|
* @param params - Save parameters
|
|
20873
20956
|
*/
|
|
20874
|
-
interactionEventSave(params: InteractionEventSaveParams): Promise<
|
|
20957
|
+
interactionEventSave(params: InteractionEventSaveParams): Promise<InteractionEventSaveResponse>;
|
|
20875
20958
|
/**
|
|
20876
|
-
* Delete interaction event
|
|
20959
|
+
* Delete interaction event.
|
|
20960
|
+
*
|
|
20961
|
+
* The body carries channelId + taskIds (pass the activityId when the activity
|
|
20962
|
+
* was saved with allDone=Y); only appId/timestamp are signed (query).
|
|
20877
20963
|
*
|
|
20878
20964
|
* @param params - Delete parameters
|
|
20879
20965
|
*/
|
|
20880
|
-
interactionEventDelete(params: InteractionEventDeleteParams): Promise<
|
|
20966
|
+
interactionEventDelete(params: InteractionEventDeleteParams): Promise<boolean>;
|
|
20881
20967
|
/**
|
|
20882
20968
|
* Create inviter
|
|
20883
20969
|
*
|
|
@@ -24122,4 +24208,4 @@ declare function getErrorCodeCategory(code: number): string;
|
|
|
24122
24208
|
*/
|
|
24123
24209
|
declare const VERSION = "1.0.0";
|
|
24124
24210
|
|
|
24125
|
-
export { type AccountPaginatedResponse, type AccountPurview, AccountService, type AccountViewerConfig, type AccountViewerSettings, type AccountYnFlag, type AddAccountParams, type AddBadwordsParams, type AddBadwordsResponse, type AddBannedIpParams, type AddBannedIpResponse, type AddBulletinParams, type AddChannelCouponParams, type AddChannelLabelRefsParams, type AddChannelProductParams, type AddChannelProductResponse, type AddChannelViewersParams, type AddCustomFieldParams, type AddCustomFieldResponse, type AddCustomFieldValueParams, type AddCustomFieldValueResponse, type AddDiskVideosParams, type AddEditQuestionParams, type AddEditQuestionnaireParams, type AddInviteSaleParams, type AddInviteSaleResponse, type AddPptRecordTaskParams, type AddReceiveInfoParams, type AddReceiveInfoResponse, type AddReceiveInfoV4Params, type AddRobotModel, type AddViewerLabelParams, type AddVodPlaybackToLibraryParams, type AddVodPlaybackToLibraryResponse, type AddWhiteListParams, type AllChannelSimpleListItem, type AllocateLogType, type AllocateOrigin, type AllocationLogItem, type AnchorDetail, type AnchorItem, type AnchorRelationItem, type AnswerListResponse, type AntiRecordModelType, type AntiRecordSettingsParams, type AntiRecordSettingsResponse, type AntiRecordShowMode, type AntiRecordType, type ApiErrorDetail, type ApiErrorResponse, type ApiResponse, type ApiResponseStatus, type ApiSuccessResponse, type ApiVersion, type ArrayElement, type AssociationReceiveChannelsParams, type AssociationReceiveChannelsResponse, type AsyncUploadVideoProducePptParams, type AsyncUploadVideoProducePptResponse, type AudioModerationRecordItem, type AudioModerationSetting, type AudioModerationSettings, type AudioModerationStrategy, type AuthConfig, type AuthSetting$1 as AuthSetting, type AuthType, type BaseCallbackPayload, type BasicCreateChannelParams, type BatchAddChannelProductItem, type BatchAddChannelProductsParams, type BatchAddChannelProductsResponse, type BatchAddSubmeetingParams, type BatchAddSubmeetingResponse, type BatchAddTransmitParams, type BatchAddTransmitResponse, type BatchCheckinItem, type BatchCheckinParams, type BatchCreateChannelsParams, type BatchCreateChannelsResponse, type BatchCreatePopularizationParams, type BatchCreateQuestionnaireParams, type BatchCreateQuestionnaireResponse, type BatchCreateVideoProducesItem, type BatchCreateVideoProducesParams, type BatchCreateVideoProducesResponse, type BatchDeleteChannelProductParams, type BatchDeleteRobotsParams, type BatchPlaybackListParams, type BatchPlaybackListResponse, type BatchPlaybackVideoInfoParams, type BatchPublishSubtitleParams, type BatchQuestionnaireParams, type BatchSaveRobotsParams, type BatchSaveRobotsResponse, type BatchShelfChannelProductParams, type BatchUpdateDanmuParams, type BatchUpdateOrderStatusFailOrder, type BatchUpdateOrderStatusParams, type BatchUpdateOrderStatusResponse, type BillDetailItem, type BillDetailItemCategory, type BillUseDetailItem, type BillingDailyItem, type BlacklistAddParams, type BlacklistDeleteParams, type BlacklistItem, type BlacklistPageParams, type BroadcastType, type BrowsersSummary, type BrowsersSummaryParams, type Bulletin, type CallbackOriginType, type CallbackPayload, type CallbackSettings, type CancelCardPushParams, type CardPushItem, type Category, type ChannelAdvert, type ChannelAuthSetting$1 as ChannelAuthSetting, type ChannelBasicInfo, type ChannelBasicItem, type ChannelBasicListItem, type ChannelBasicVideo, type ChannelDetail$2 as ChannelDetail, type ChannelDetailListItem, type ChannelDetailListParams, type ChannelDetailListResponse, type ChannelDetailParams, type ChannelDetailResponse, type ChannelFollowSetting, type ChannelIdListInput$1 as ChannelIdListInput, type ChannelIdParam, type ChannelLiveStatusItem, type ChannelLotteryCollectInfo, type ChannelLotteryListParams, type ChannelLotteryListResponse, type ChannelLotteryRecord, type ChannelManagementDetail, type ChannelModel, type ChannelPlaybackSetting, type ChannelProductEnabledResponse, type ChannelRobotItem, type ChannelRoleAccount, type ChannelRoleInput, type ChannelScene$1 as ChannelScene, ChannelService, type ChannelSimpleListItem, type ChannelStreamType, type ChannelSubtitleBatchItem, type ChannelViewerApiScope, type ChannelViewerGroup, type ChannelViewerGroupSetting, type ChannelViewerImportFile, type ChannelViewerItem, type ChannelViewerPageResponse, type ChannelViewerScopedParams, type ChannelWatchStatus, type ChannelsParams, type ChannelsResponse, type ChatHistoryPageResponse, type ChatMessage, ChatService, type ChatTokenParams, type ChatTokenResponse, type CheckinListItem, type CheckinListResponse, type CheckinRecordResponse, type ChildAccount, type ChildAccountRole, type ChildAccountStatus, type CleanNoticesParams, type ContentGroupItem, type ContentGroupType, type ContentGroupTypeExtended, type ConvertRecordFileToVodParams, type ConvertRecordFileToVodResponse, type CountOnlineUserParams, type Coupon, type CouponRule, type CouponViewer, type CreateAccountParams, type CreateAnchorParams, type CreateCardPushParams, type CreateCardPushResponse, type CreateCategoryParams, type CreateCategoryResponse, type CreateChannelParams, type CreateChannelRequest, type CreateChannelResponse, type CreateChannelViewerGroupParams, type CreateChildAccountParams, type CreateCouponParams, type CreateDistributeBatchParams, type CreateGroupUserParams, type CreateGroupUserResponse, type CreateInitBasicSetting, type CreateInitChannelParams, type CreateInitChannelResponse, type CreateInitMasterAuthSetting, type CreateInitPlaybackSetting, type CreateLabelParams, type CreateLabelResponse, type CreateLotteryActivityParams, type CreateLotteryActivityResponse, type CreateMaterialLabelParams, type CreateMrChannelExactParams, type CreateMrChannelExactResponse, type CreateMrChannelParams, type CreateMrChannelResponse, type CreateOrganizationParams, type CreateOrganizationResponse, type CreateProductParams, type CreateProductResponse, type CreateProductTagParams$1 as CreateProductTagParams, type CreateProductTagResponse$1 as CreateProductTagResponse, type CreateQuestionnaireParams, type CreateRoleParams, type CreateSessionParams, type CreateSessionResponse, type CreateTaskRewardParams, type CreateTaskRewardResponse, type CreateViewerLabelParams, type CreateViewerLabelResponse, type CreateViewerNameGroupParams, type CreateViewerRecordParams, type CreateWaitLotteryParams, type CreateWaitLotteryResponse, type CryptoSource, type CustomAuthInfoResponse, type CustomField, type CustomFieldViewerValue, type DailyViewStatistics, type DecorateSettings, type DeepPartial, type DeleteAccountsBatchParams, type DeleteAccountsParams, type DeleteCardPushParams, type DeleteCategoryParams, type DeleteCategoryResponse, type DeleteChannelBannedParams, type DeleteChannelBannedResponse, type DeleteChannelProductParams, type DeleteChannelViewerGroupParams, type DeleteChannelViewersParams, type DeleteChildAccountsParams, type DeleteCouponsBatchParams, type DeleteDiskVideosParams, type DeleteDistributeBatchParams, type DeleteLabelParams, type DeleteLotteryActivityParams, type DeleteMaterialLabelParams, type DeleteMaterialsParams, type DeleteMaterialsResult, type DeleteOrganizationParams, type DeletePptRecordParams, type DeleteProductParams, type DeleteProductTagParams$1 as DeleteProductTagParams, type DeleteQuestionParams, type DeleteRecordFileParams, type DeleteSessionParams, type DeleteStudentQuestionWebhookParams, type DeleteTaskRewardParams, type DeleteUserBadwordParams, type DeleteUserBadwordResponse, type DeleteVideoProduceParams, type DeleteViewerLabelParams, type DeleteViewerLabelRefParams, type DeleteViewerRecordParams, type DeleteWhiteListParams, type DigitalHuman, type DigitalHumanInfo, type DigitalHumanOrganization, type DirectAuthParams, type DirectAuthResponse, type DirectAuthViewerParams, type DiskVideoScriptDeleteParams, type DiskVideoScriptInfo, type DiskVideoScriptQueryParams, type DiskVideoScriptUploadParams, type DiskVideoScriptUploadResponse, type DistributeItem, type DistributeListResponse, type DistributeStatistic, type DistributeStatisticExactParams, type DistributeStatisticExactResponse, type DistributeStatisticItem, type DocConvertStatusItem, type DocConvertType, type DocListResponse, type DocModel, type DocStatus, type DocType, type DonateSettings, type DonateTemplate, type DoubleTeacherType, type DownloadRecordInfoParams, type DownloadWinnerDetailParams, type DownloadWinnerDetailResponse, ERROR_CATEGORIES, ERROR_MESSAGES, type EnrollField, type EnrollItem, type EnrollListParams, type EnrollListResponse, type EnvironmentInfo, type ErrorCategory, type ErrorCategoryName, type ExportChannelViewersParams, type ExportChannelViewersResponse, ExportSessionStatsParams, ExportSessionStatsResponse, type ExternalAuthSetting, type ExternalViewerItem, FinanceService, type FollowViewer, type ForbidChannelKickUsersBody, type ForbidChannelKickUsersParams, type ForbidChannelKickUsersResponse, type ForbidChannelUnkickUsersBody, type ForbidChannelUnkickUsersParams, type ForbidChannelUnkickUsersResponse, type ForbidKickUsersBody, type ForbidKickUsersGlobalResponse, type ForbidKickUsersResponse, type ForbidUnkickUsersGlobalResponse, type ForbidUser, type FullReduceRule, type GeoSummary, type GeoSummaryParams, type GetAccountViewerParams, type GetAnswerListParams, type GetBillUseDetailListParams, type GetBillUseDetailListResponse, type GetByRoleParams, type GetBySaleParams, type GetCategoryListResponse, type GetChannelBannedListParams, type GetChannelBannedListResponse, type GetChannelBannedUserListParams, type GetChannelBannedUserListResponse, type GetChannelKickedUserListParams, type GetChannelKickedUserListResponse, type GetChannelViewerGroupSettingParams, type GetCheckinByCheckinIdParams, type GetCheckinBySessionIdParams, type GetCheckinByTimeParams, type GetCheckinListParams, type GetChildAccountParams, type GetDailyViewStatisticsParams, type GetDailyViewStatisticsResponse, type GetDecorateParams, type GetDistributeStatisticParams, type GetDocListRequest, type GetDonateParams, type GetForbidUserListParams, type GetForbidUserListResponse, type GetIncomeDetailParams, type GetIncomeDetailResponse, type GetInviteRankParams, type GetInviteStatsParams, type GetLiveSessionParams, type GetLotteryActivityParams, type GetMicDurationParams, type GetProductOrderParams, type GetProductSettingParams, type GetProductTagParams, type GetQuestionListParams, type GetQuestionListResponse, type GetQuestionnaireDetailParams, type GetQuestionnaireResultParams, type GetRecordFieldParams, type GetRecordInfoParams, type GetRelevanceParams, type GetRobotSettingParams, type GetRobotStatsParams, type GetRoleResponse, type GetSessionParams, type GetSessionStatsSummaryListParams, type GetSessionStatsSummaryListResponse, type GetShareParams, type GetSimpleChannelListParams, type GetSimpleChannelListResponse, type GetStudentQuestionWebhookParams, type GetSubtitleParams, type GetTaskRewardParams, type GetTaskRewardStatsParams, type GetTransmitAssociationsParams, type GetUserChildrenChannelsParams, type GetUserChildrenChannelsResponse, type GetUserDurationsParams, type GetUserDurationsResponse, type GetUserInfoResponse, type GetVideoProduceParams, type GetVideoProducePptParams, type GetViewerDetailParams, type GetViewerRecordParams, type GetViewerUnionDetailParams, GetViewlogParams, GetViewlogResponse, type GetWatchConditionParams, type GetWatchLogDetailParams, type GetWatchLogListParams, type GetWatchLogListResponse, type GetWhiteListParams, type GetWhiteListResponse, type GetWinnerDetailParams, type GiftDonate, type GiftItem, type GiftPageParams, type GlobalFooterSettings, type GlobalSwitchSettings, type GroupAddParams, type GroupAllocateLogContent, type GroupDeleteParams, type GroupInfo, type GroupListParams, type GroupPaginatedResponse, type GroupPaginationParams, type GroupResponse, GroupService, type GroupUpdateParams, type GroupUserBillingDailyItem, type GroupUserPackage, type GroupViewerAddParams, type GroupViewerDeleteParams, type GroupViewerInfo, type GroupViewerListParams, type HeadAdvertParams, type HeadAdvertType, type HistoricalRecordFileItem, type HistoricalRecordFileSubtitle, HttpMethod, type IllegalNotifySettings, type ImageFrequency, type ImportChannelViewersParams, type ImportChannelViewersResponse, type ImportExternalViewerParams, type ImportExternalViewerResponse, type ImportedExternalViewer, type InfoField$1 as InfoField, type InfoFieldType, type InteractionCallbackPayload, type InteractionEventDeleteParams, type InteractionEventSaveParams, type InteractionType, type InviteCustomerInfo, type InviteListItem, type InviteListParams, type InviteListResponse, type InviteRankItem, type InviteSale, type InviteStats, type InviterCreateParams, type JsonArray, type JsonObject, type JsonValue, type KickedUser, type Label, type LanguageInfo, type LikeItem, type LikePageParams, type ListAllChannelBasicParams, type ListAllChannelBasicResponse, type ListAllChannelSimpleParams, type ListAllChannelSimpleResponse, type ListAllocateLogParams, type ListAllocateLogResponse, type ListAllocationLogsParams, type ListAllocationLogsResponse, type ListAnchorRelationsParams, type ListAnchorsParams, type ListAnchorsResponse, type ListAudioModerationRecordsParams, type ListAudioModerationRecordsResponse, type ListBillDetailsParams, type ListBillDetailsResponse, type ListBillingDailyParams, type ListBillingDailyResponse, type ListBulletinsParams, type ListBulletinsResponse, type ListCardPushesParams, type ListCardPushesResponse, type ListChannelBasicParams, type ListChannelProductTagsResponse, type ListChannelSessionsParams, type ListChannelViewerGroupsParams, type ListChannelViewerGroupsResponse, type ListChannelViewersParams, type ListChannelViewersResponse, type ListChannelsFollowParams, type ListChannelsFollowResponse, type ListChannelsLotteryParams, type ListChildAccountsParams, type ListChildAccountsResponse, type ListContentGroupsParams, type ListCustomFieldsResponse, type ListDigitalHumansParams, type ListDigitalHumansResponse, type ListDistributeParams, type ListFollowViewersParams, type ListFollowViewersResponse, type ListGroupUserBillingDailyParams, type ListGroupUserBillingDailyResponse, type ListGroupUserPackagesParams, type ListGroupUserPackagesResponse, type ListInviteSalesParams, type ListInviteSalesResponse, type ListLabelsParams, type ListLabelsResponse, type ListLotteryActivitiesParams, type ListLotteryActivitiesResponse, type ListLotteryParams, type ListMaterialCategoriesParams, type ListMaterialCategoriesResponse, type ListMaterialLabelsParams, type ListMaterialLabelsResponse, type ListMaterialsParams, type ListMaterialsResponse, type ListOrganizationsParams, type ListOrganizationsResponse, type ListPptRecordTasksParams, type ListPptRecordTasksResponse, type ListProductOrdersParams, type ListProductOrdersResponse, type ListProductTagsParams$1 as ListProductTagsParams, type ListProductTagsResponse, type ListProductsParams, type ListProductsResponse, type ListQaParams, type ListQaResponse, type ListQuestionParams, type ListQuestionSendTimeParams, type ListQuestionnaireByPageParams, type ListQuestionnaireParams, type ListRecordFilesParams, type ListRecordFilesResponse, type ListRobotsParams, type ListRobotsResponse, type ListRolesParams, type ListRolesResponse, type ListSessionsParams, type ListSessionsResponse, type ListUnrelatedChannelViewersParams, type ListUnrelatedChannelViewersResponse, type ListVideoModerationResultsParams, type ListVideoModerationResultsResponse, type ListVideoProducePptsParams, type ListVideoProducePptsResponse, type ListVideoProducesParams, type ListVideoProducesResponse, type ListViewerLabelsResponse, type ListViewerRecordsParams, type ListViewerRecordsResponse, type LiveDataParams, type LiveDataSummary, type LiveInteractionChannelId, LiveInteractionService, type LiveInteractionYnFlag, type LiveSessionInfo, type LiveSessionStatsItem, type LiveStatusCallbackPayload, type LiveStatusItem, type LiveStatusListParams, type LiveStatusType, type LiveSummary, type LiveSummaryParams, type LogoParams, type LogoPosition, type LotteryActivity, type LotteryListItem, type LotteryListParams, type LotteryListResponse, type LotteryStatistics, MAX_DATE_RANGE_DAYS, type MarqueeTemplate, type MarqueeUrlParams, type Material, type MaterialCategory, type MaterialExtData, type MaterialInfo, type MaterialLabel, type MaterialPaginatedResponse, type MaterialPaginationParams, type MemberStatusCallbackPayload, type MemberStatusType, type MergeRecordFilesParams, type MergeRecordFilesResponse, type MicDurationParams, type MicDurationResponse$1 as MicDurationResponse, type ModerationLabel, type ModerationResultType, type MonitorListStreamInfoParams, type MonitorStreamInfo, type MonitorStreamInfoPoint, type MovePlaybackVideoParams, type MrConcurrencyDetailResponse, type Mutable, type NewScene, type NonNullable, type OptionalKeys, type Organization, OtherService, type PageMRecordParams, type PageMRecordResponse, type PageSetting, type PaginatedForbidUserData, type PaginationOptions, type PaginationResponse, type PauseRobotParams, type Permission, PlatformService, type PlaybackCallbackPayload, type PlaybackItem, type PlaybackListParams, type PlaybackListResponse, type PlaybackSetting, type PlaybackVideoInfo, type PlaybackVideoInfoByChannel, type PlaybackVideoListItem, type PlaybackVideoMoveType, PlayerService, PolyVAPIError, type PolyVAPIErrorOptions, type PolyVAPIErrorResponse, PolyVClient, type PolyVClientConfig, PolyVError, PolyVErrorCode, type PolyVErrorOptions, PolyVValidationError, type PolyvUrlResponse, type PopularizationInfo, type PopularizationItem, type PopularizationListParams, type PptRecordMutationResponse, type PptRecordSettingResponse, type PptRecordTaskItem, PptStatus, type Primitive, type PrivacyParam, type Product, type ProductIdParams, type ProductLinkType, type ProductOrder, type ProductOrderAddress, type ProductOrderProduct, type ProductPriceType, type ProductSetting, type ProductStatsItem, type ProductStatsPageParams, type ProductStatus, type ProductTag$1 as ProductTag, type ProductType, type PushCardParams, type PushChannelProductParams, type PvShowEnableSettings, type Qa, type QaAnswer, type QueryPlaybackVideoInfoParams, type QueryWinnerViewerParams, type QuestionListItem, type QuestionListResponse, type QuestionRecord, type QuestionRecordUser, type QuestionType, type QuestionnaireDetailResponse, type QuestionnaireListItem, type QuestionnaireListResponse, type QuestionnaireOption, type QuestionnaireQuestion, type QuestionnaireQuestionType, type QuestionnaireResultResponse, type QuestionnaireSavedInfo, type ReceiveListParams, type ReceiveListResponse, type RecordCallbackPayload, type RecordFieldResponse, type RecordInfoItem, type RecordInfoResponse, type RecordedFileItem, type ReferenceProductParams, type ReferenceProductResponse, type RemoveChatContentsParams, type RemoveInviteSaleParams, type RemoveInviteSaleResponse, type RequestOptions, type RequireKeys, type ResolvedClientConfig, type RewardDonateType, type Robot, type RobotSetting, type RobotStats, type Role, type RoleConfig, type RoleConfigTemplate, type RoleDetail, type RolePermission, type SaveRobotItem, type SearchCouponViewersParams, type SearchCouponViewersResponse, type SearchCouponsParams, type SearchCouponsResponse, type SendAdminMsgResponse, type SendCustomMessageEncodeParams, type SendCustomMessageParams, type SendFavorParams, type SendFavorResponse, type SendQuestionParams, type SendQuestionResultParams, type SendRewardMsgParams, type SendRewardMsgResponse, type SendSmsParams, type SessionExternalBySessionParams, type SessionExternalBySessionResponse, type SessionInfo, type SessionRelevanceInfo, type SessionStatsListParams, type SessionStatsListResponse, type SessionStatsSummary, type SetAuthTypeParams, type SetAuthorizedAddressParams, type SetChannelTokenParams, type SetConcurrencesParams, type SetCustomAuthParams, type SetDefaultPlaybackVideoParams, type SetDirectAuthParams, type SetExternalAuthParams, type SetFlowParams, type SetLiveDurationsParams, type SetOrganizationsItem, type SetOrganizationsParams, type SetPlaybackCallbackParams, type SetPlaybackCallbackResponse, type SetPullBitrateExactParams, type SetPullBitrateParams, type SetRecordCallbackParams, type SetRecordCallbackResponse, type SetSpaceParams, type SetStreamCallbackParams, type SetStreamCallbackResponse, type SetStudentQuestionWebhookParams, type SetUserChildrenLoginTokenParams, type SetUserChildrenLoginTokenResponse, type SetUserLoginTokenParams, type SetUserLoginTokenResponse, type SetUserPlaybackEnabledParams, type SetUserPlaybackEnabledResponse, type SetWatchConditionParams, type SexType, type ShareSettings, type ShelfChannelProductParams, type SignParams, type SignatureConfig, type SignatureInput, SignatureMethod, type SignatureOutput, type SignatureResult, type SortChannelProductOrderParams, type SortChannelProductParams, type SortOptions, type SortPlaybackVideosParams, type SsoConfigParams, type SsoConfigResponse, type SsoLoginParams, type SsoLoginResponse, type StatisticsCallbackPayload, StatisticsService, type StopAdvertParams, type StopQuestionParams, type StopQuestionnaireParams, type StopQuestionnaireResponse, type StopTaskRewardParams, type StudentQuestionWebhookMutationResponse, type StudentQuestionWebhookResponse, type SubAuthType, type SubmeetingChannelInput, type SubmitAcceptInfoParams, type SubtitleConfig, type SubtitleConfigParams, type SubtitleInfo$1 as SubtitleInfo, type SubtitleLanguageInfo, type SwitchConfigItem, type SwitchGetParams, type SwitchGetResponse, type SwitchUpdateParams, type SwitchUpdateResponse, type TaskReward, type TaskRewardPageParams, type TaskRewardStats, type TaskRewardViewerDetail, type TeacherAnswerMessageType, type TeacherAnswerParams, type TeacherAnswerResponse, type TeacherInfo$1 as TeacherInfo, type TeacherListParams, type Template, type TemplateCashDonate, type TemplateGiftDonate, type TokenLoginUrlParams, type TokenLoginUrlResponse, type TouristExternalHrefConfig, type TransferChannelViewersParams, type TransmitAssociation, type TransmitChannelInfo, type TtsVoice, type TtsVoiceInfo, TtsVoiceTag, type UnconditionalRule, type UnrelatedChannelViewerItem, type UpdateAccountInfoParams, type UpdateAccountParams, type UpdateAccountViewerConfigParams, type UpdateAccountViewerParams, type UpdateAnchorParams, type UpdateAnchorStatusParams, type UpdateAudioModerationSettingParams, type UpdateAudioModerationSettingsParams, type UpdateAuthParams, type UpdateAuthUrlParams, type UpdateBannedUserParams, type UpdateBannedUserResponse, type UpdateBannedViewerParams, type UpdateBannedViewerResponse, type UpdateByRoleParams, type UpdateCallbackParams, type UpdateCardPushParams, type UpdateCategoryNameParams, type UpdateCategoryNameResponse, type UpdateCategoryRankParams, type UpdateCategoryRankResponse, type UpdateChannelConfigParams, type UpdateChannelParams, type UpdateChannelProductEnabledParams, type UpdateChannelProductParams, type UpdateChannelRequest, type UpdateChannelSubtitleBatchParams, type UpdateChannelSubtitleParams, type UpdateChannelTemplateParams, type UpdateChannelViewerGroupParams, type UpdateChannelViewerGroupSettingParams, type UpdateChannelsFollowParams, type UpdateChatEnabledParams, type UpdateChildAccountParams, type UpdateCouponParams, type UpdateCouponsStatusBatchParams, type UpdateDecorateParams, type UpdateDistributeBatchParams, type UpdateDonateParams, type UpdateDonateTemplateParams, type UpdateGlobalFooterParams, type UpdateGlobalSwitchParams, type UpdateGroupUserPackageParams, type UpdateInviteSaleParams, type UpdateInviteSaleResponse, type UpdateLabelParams, type UpdateLotteryActivityParams, type UpdateMarqueeTemplateParams, type UpdateMasterSwitchParams, type UpdateMaterialLabelParams, type UpdatePageSettingParams, type UpdatePlaybackSettingParams, type UpdatePptRecordSettingParams, type UpdateProductParams, type UpdateProductSettingParams, type UpdateProductTagParams$1 as UpdateProductTagParams, type UpdatePvShowEnableParams, type UpdateRobotListSettingParams, type UpdateRobotSettingParams, type UpdateRoleConfigTemplateParams, type UpdateRoleParams, type UpdateSessionParams, type UpdateShareParams, type UpdateSkinBatchParams, type UpdateSkinParams, type UpdateStreamTypeParams, type UpdateSubtitleConfigParams, type UpdateSubtitleParams, type UpdateSwitchParams, type UpdateTaskRewardParams, type UpdateTemplateExactParams, type UpdateVideoModerationSettingParams, type UpdateVideoModerationSettingsParams, type UpdateViewerLabelParams, type UpdateViewerRecordParams, type UpdateViewerUserSystemConfigParams, type UpdateWhiteListParams, type UploadDocRequest, type UploadDocResponse, type UploadOptions, type UploadProgress, type UploadVideoProducePptParams, type UploadVideoProducePptResponse, type UserChannelBasicListParams, type UserChannelBasicListResponse, type UserChildrenChannel, type CreateProductTagParams as UserCreateProductTagParams, type CreateProductTagResponse as UserCreateProductTagResponse, type DeleteProductTagParams as UserDeleteProductTagParams, type MicDurationResponse as UserMicDurationResponse, type UserPaginatedResponse, type UserPaginationParams, type UserPlaybackListParams, type UserPlaybackListResponse, type ProductTag as UserProductTag, type UserSwitchValue, type UpdateProductTagParams as UserUpdateProductTagParams, V4AiService, type ChannelDetail as V4ChannelDetail, type ChannelIdListInput as V4ChannelIdListInput, type V4ChannelPageResponse, V4ChannelService, type SubtitleInfo as V4ChannelSubtitleInfo, V4ChatService, V4GlobalService, V4GroupService, V4MaterialService, type V4PaginatedResponse, type V4PaginationParams, V4PlatformService, V4RobotService, V4StatisticsService, V4UserService, V4WebAppService, VERSION, type ValidationConstraints, type VersionConfig, type VideoModerationResultItem, type VideoModerationSetting, type VideoModerationSettings, type VideoModerationStrategy, type VideoProducePpt, type VideoProducePptConvertType, VideoProduceStatus, type VideoProduceTask, type ViewerApiTokenParams, type ViewerApiTokenResponse, type ViewerFollowUser, type ViewerLabel, type ViewerLogoutParams, type ViewerLotteryWinItem, type ViewerLotteryWinParams, type ViewerLotteryWinResponse, type ViewerRecord, type ViewerSource, ViewlogItem, type WatchConditionResponse, type WatchFeedbackItem, type WatchFeedbackListParams, type WatchFeedbackListResponse, type WatchLogDetailItem, type WatchLogDetailResponse, type WatchLogItem, type WatchType, type WatermarkFontSize, type AuthSetting as WebAuthSetting, type InfoField as WebInfoField, WebService, type WeixinBookingItem, type WeixinBookingListParams, type WeixinBookingListResponse, type WeixinBookingStats, type WeixinBookingStatsParams, type WhiteListItem, type WinnerDetailItem, type WinnerDetailResponse, type WinnerViewerInfo, type YNEnabled, type YNFlag$1 as YNFlag, type cleanChatParams, collectAll, createSignature, type delChatParams, generateSignature, generateTimestamp, getEnvironmentInfo, getErrorCodeCategory, getErrorMessage, getErrorMessageByCode, type getHistoryPageParams, isBrowser, isNode, isPolyVAPIError, isPolyVError, isPolyVErrorCode, isPolyVValidationError, isStartDateBeforeEndDate, isValidDateFormat, isWebWorker, paginate, type sendAdminMsgParams, sortParams, validateDateRange };
|
|
24211
|
+
export { type AccountPaginatedResponse, type AccountPurview, AccountService, type AccountViewerConfig, type AccountViewerSettings, type AccountYnFlag, type AddAccountParams, type AddBadwordsParams, type AddBadwordsResponse, type AddBannedIpParams, type AddBannedIpResponse, type AddBulletinParams, type AddChannelCouponParams, type AddChannelLabelRefsParams, type AddChannelProductParams, type AddChannelProductResponse, type AddChannelViewersParams, type AddCustomFieldParams, type AddCustomFieldResponse, type AddCustomFieldValueParams, type AddCustomFieldValueResponse, type AddDiskVideosParams, type AddEditQuestionParams, type AddEditQuestionnaireParams, type AddInviteSaleParams, type AddInviteSaleResponse, type AddPptRecordTaskParams, type AddReceiveInfoParams, type AddReceiveInfoResponse, type AddReceiveInfoV4Params, type AddRobotModel, type AddViewerLabelParams, type AddVodPlaybackToLibraryParams, type AddVodPlaybackToLibraryResponse, type AddWhiteListParams, type AllChannelSimpleListItem, type AllocateLogType, type AllocateOrigin, type AllocationLogItem, type AnchorDetail, type AnchorItem, type AnchorRelationItem, type AnswerListResponse, type AntiRecordModelType, type AntiRecordSettingsParams, type AntiRecordSettingsResponse, type AntiRecordShowMode, type AntiRecordType, type ApiErrorDetail, type ApiErrorResponse, type ApiResponse, type ApiResponseStatus, type ApiSuccessResponse, type ApiVersion, type ArrayElement, type AssociationReceiveChannelsParams, type AssociationReceiveChannelsResponse, type AsyncUploadVideoProducePptParams, type AsyncUploadVideoProducePptResponse, type AudioModerationRecordItem, type AudioModerationSetting, type AudioModerationSettings, type AudioModerationStrategy, type AuthConfig, type AuthSetting$1 as AuthSetting, type AuthType, type BaseCallbackPayload, type BasicCreateChannelParams, type BatchAddChannelProductItem, type BatchAddChannelProductsParams, type BatchAddChannelProductsResponse, type BatchAddSubmeetingParams, type BatchAddSubmeetingResponse, type BatchAddTransmitParams, type BatchAddTransmitResponse, type BatchCheckinItem, type BatchCheckinParams, type BatchCreateChannelsParams, type BatchCreateChannelsResponse, type BatchCreatePopularizationParams, type BatchCreateQuestionnaireParams, type BatchCreateQuestionnaireResponse, type BatchCreateVideoProducesItem, type BatchCreateVideoProducesParams, type BatchCreateVideoProducesResponse, type BatchDeleteChannelProductParams, type BatchDeleteRobotsParams, type BatchPlaybackListParams, type BatchPlaybackListResponse, type BatchPlaybackVideoInfoParams, type BatchPublishSubtitleParams, type BatchQuestionnaireParams, type BatchSaveRobotsParams, type BatchSaveRobotsResponse, type BatchShelfChannelProductParams, type BatchUpdateDanmuParams, type BatchUpdateOrderStatusFailOrder, type BatchUpdateOrderStatusParams, type BatchUpdateOrderStatusResponse, type BillDetailItem, type BillDetailItemCategory, type BillUseDetailItem, type BillingDailyItem, type BlacklistAddParams, type BlacklistDeleteParams, type BlacklistItem, type BlacklistPageParams, type BroadcastType, type BrowsersSummary, type BrowsersSummaryParams, type Bulletin, type CallbackOriginType, type CallbackPayload, type CallbackSettings, type CancelCardPushParams, type CardPushItem, type Category, type ChannelAdvert, type ChannelAuthSetting$1 as ChannelAuthSetting, type ChannelBasicInfo, type ChannelBasicItem, type ChannelBasicListItem, type ChannelBasicVideo, type ChannelDetail$2 as ChannelDetail, type ChannelDetailListItem, type ChannelDetailListParams, type ChannelDetailListResponse, type ChannelDetailParams, type ChannelDetailResponse, type ChannelFollowSetting, type ChannelIdListInput$1 as ChannelIdListInput, type ChannelIdParam, type ChannelLiveStatusItem, type ChannelLotteryCollectInfo, type ChannelLotteryListParams, type ChannelLotteryListResponse, type ChannelLotteryRecord, type ChannelManagementDetail, type ChannelModel, type ChannelPlaybackSetting, type ChannelProductEnabledResponse, type ChannelRobotItem, type ChannelRoleAccount, type ChannelRoleInput, type ChannelScene$1 as ChannelScene, ChannelService, type ChannelSimpleListItem, type ChannelStreamType, type ChannelSubtitleBatchItem, type ChannelViewerApiScope, type ChannelViewerGroup, type ChannelViewerGroupSetting, type ChannelViewerImportFile, type ChannelViewerItem, type ChannelViewerPageResponse, type ChannelViewerScopedParams, type ChannelWatchStatus, type ChannelsParams, type ChannelsResponse, type ChatHistoryPageResponse, type ChatMessage, ChatService, type ChatTokenParams, type ChatTokenResponse, type CheckinListItem, type CheckinListResponse, type CheckinRecordResponse, type ChildAccount, type ChildAccountRole, type ChildAccountStatus, type CleanNoticesParams, type ContentGroupItem, type ContentGroupType, type ContentGroupTypeExtended, type ConvertRecordFileToVodParams, type ConvertRecordFileToVodResponse, type CountOnlineUserParams, type Coupon, type CouponRule, type CouponViewer, type CreateAccountParams, type CreateAnchorParams, type CreateCardPushParams, type CreateCardPushResponse, type CreateCategoryParams, type CreateCategoryResponse, type CreateChannelParams, type CreateChannelRequest, type CreateChannelResponse, type CreateChannelViewerGroupParams, type CreateChildAccountParams, type CreateCouponParams, type CreateDistributeBatchParams, type CreateGroupUserParams, type CreateGroupUserResponse, type CreateInitBasicSetting, type CreateInitChannelParams, type CreateInitChannelResponse, type CreateInitMasterAuthSetting, type CreateInitPlaybackSetting, type CreateLabelParams, type CreateLabelResponse, type CreateLotteryActivityParams, type CreateLotteryActivityResponse, type CreateMaterialLabelParams, type CreateMrChannelExactParams, type CreateMrChannelExactResponse, type CreateMrChannelParams, type CreateMrChannelResponse, type CreateOrganizationParams, type CreateOrganizationResponse, type CreateProductParams, type CreateProductResponse, type CreateProductTagParams$1 as CreateProductTagParams, type CreateProductTagResponse$1 as CreateProductTagResponse, type CreateQuestionnaireParams, type CreateRoleParams, type CreateSessionParams, type CreateSessionResponse, type CreateTaskRewardParams, type CreateTaskRewardResponse, type CreateViewerLabelParams, type CreateViewerLabelResponse, type CreateViewerNameGroupParams, type CreateViewerRecordParams, type CreateWaitLotteryParams, type CreateWaitLotteryResponse, type CryptoSource, type CustomAuthInfoResponse, type CustomField, type CustomFieldViewerValue, type DailyViewStatistics, type DecorateSettings, type DeepPartial, type DeleteAccountsBatchParams, type DeleteAccountsParams, type DeleteCardPushParams, type DeleteCategoryParams, type DeleteCategoryResponse, type DeleteChannelBannedParams, type DeleteChannelBannedResponse, type DeleteChannelProductParams, type DeleteChannelViewerGroupParams, type DeleteChannelViewersParams, type DeleteChildAccountsParams, type DeleteCouponsBatchParams, type DeleteDiskVideosParams, type DeleteDistributeBatchParams, type DeleteLabelParams, type DeleteLotteryActivityParams, type DeleteMaterialLabelParams, type DeleteMaterialsParams, type DeleteMaterialsResult, type DeleteOrganizationParams, type DeletePptRecordParams, type DeleteProductParams, type DeleteProductTagParams$1 as DeleteProductTagParams, type DeleteQuestionParams, type DeleteRecordFileParams, type DeleteSessionParams, type DeleteStudentQuestionWebhookParams, type DeleteTaskRewardParams, type DeleteUserBadwordParams, type DeleteUserBadwordResponse, type DeleteVideoProduceParams, type DeleteViewerLabelParams, type DeleteViewerLabelRefParams, type DeleteViewerRecordParams, type DeleteWhiteListParams, type DigitalHuman, type DigitalHumanInfo, type DigitalHumanOrganization, type DirectAuthParams, type DirectAuthResponse, type DirectAuthViewerParams, type DiskVideoScriptDeleteParams, type DiskVideoScriptInfo, type DiskVideoScriptQueryParams, type DiskVideoScriptUploadParams, type DiskVideoScriptUploadResponse, type DistributeItem, type DistributeListResponse, type DistributeStatistic, type DistributeStatisticExactParams, type DistributeStatisticExactResponse, type DistributeStatisticItem, type DocConvertStatusItem, type DocConvertType, type DocListResponse, type DocModel, type DocStatus, type DocType, type DonateSettings, type DonateTemplate, type DoubleTeacherType, type DownloadRecordInfoParams, type DownloadWinnerDetailParams, type DownloadWinnerDetailResponse, ERROR_CATEGORIES, ERROR_MESSAGES, type EnrollField, type EnrollItem, type EnrollListParams, type EnrollListResponse, type EnvironmentInfo, type ErrorCategory, type ErrorCategoryName, type ExportChannelViewersParams, type ExportChannelViewersResponse, ExportSessionStatsParams, ExportSessionStatsResponse, type ExternalAuthSetting, type ExternalViewerItem, FinanceService, type FollowViewer, type ForbidChannelKickUsersBody, type ForbidChannelKickUsersParams, type ForbidChannelKickUsersResponse, type ForbidChannelUnkickUsersBody, type ForbidChannelUnkickUsersParams, type ForbidChannelUnkickUsersResponse, type ForbidKickUsersBody, type ForbidKickUsersGlobalResponse, type ForbidKickUsersResponse, type ForbidUnkickUsersGlobalResponse, type ForbidUser, type FullReduceRule, type GeoSummary, type GeoSummaryParams, type GetAccountViewerParams, type GetAnswerListParams, type GetBillUseDetailListParams, type GetBillUseDetailListResponse, type GetByRoleParams, type GetBySaleParams, type GetCategoryListResponse, type GetChannelBannedListParams, type GetChannelBannedListResponse, type GetChannelBannedUserListParams, type GetChannelBannedUserListResponse, type GetChannelKickedUserListParams, type GetChannelKickedUserListResponse, type GetChannelViewerGroupSettingParams, type GetCheckinByCheckinIdParams, type GetCheckinBySessionIdParams, type GetCheckinByTimeParams, type GetCheckinListParams, type GetChildAccountParams, type GetDailyViewStatisticsParams, type GetDailyViewStatisticsResponse, type GetDecorateParams, type GetDistributeStatisticParams, type GetDocListRequest, type GetDonateParams, type GetForbidUserListParams, type GetForbidUserListResponse, type GetIncomeDetailParams, type GetIncomeDetailResponse, type GetInviteRankParams, type GetInviteStatsParams, type GetLiveSessionParams, type GetLotteryActivityParams, type GetMicDurationParams, type GetProductOrderParams, type GetProductSettingParams, type GetProductTagParams, type GetQuestionListParams, type GetQuestionListResponse, type GetQuestionnaireDetailParams, type GetQuestionnaireResultParams, type GetRecordFieldParams, type GetRecordInfoParams, type GetRelevanceParams, type GetRobotSettingParams, type GetRobotStatsParams, type GetRoleResponse, type GetSessionParams, type GetSessionStatsSummaryListParams, type GetSessionStatsSummaryListResponse, type GetShareParams, type GetSimpleChannelListParams, type GetSimpleChannelListResponse, type GetStudentQuestionWebhookParams, type GetSubtitleParams, type GetTaskRewardParams, type GetTaskRewardStatsParams, type GetTransmitAssociationsParams, type GetUserChildrenChannelsParams, type GetUserChildrenChannelsResponse, type GetUserDurationsParams, type GetUserDurationsResponse, type GetUserInfoResponse, type GetVideoProduceParams, type GetVideoProducePptParams, type GetViewerDetailParams, type GetViewerRecordParams, type GetViewerUnionDetailParams, GetViewlogParams, GetViewlogResponse, type GetWatchConditionParams, type GetWatchLogDetailParams, type GetWatchLogListParams, type GetWatchLogListResponse, type GetWhiteListParams, type GetWhiteListResponse, type GetWinnerDetailParams, type GiftDonate, type GiftItem, type GiftPageParams, type GlobalFooterSettings, type GlobalSwitchSettings, type GroupAddParams, type GroupAllocateLogContent, type GroupDeleteParams, type GroupInfo, type GroupListParams, type GroupPaginatedResponse, type GroupPaginationParams, type GroupResponse, GroupService, type GroupUpdateParams, type GroupUserBillingDailyItem, type GroupUserPackage, type GroupViewerAddParams, type GroupViewerDeleteParams, type GroupViewerInfo, type GroupViewerListParams, type HeadAdvertParams, type HeadAdvertType, type HistoricalRecordFileItem, type HistoricalRecordFileSubtitle, HttpMethod, type IllegalNotifySettings, type ImageFrequency, type ImportChannelViewersParams, type ImportChannelViewersResponse, type ImportExternalViewerParams, type ImportExternalViewerResponse, type ImportedExternalViewer, type InfoField$1 as InfoField, type InfoFieldType, type InteractionCallbackPayload, type InteractionEventDeleteParams, type InteractionEventSaveParams, type InteractionEventSaveResponse, type InteractionEventSaveTask, type InteractionType, type InviteCustomerInfo, type InviteListItem, type InviteListParams, type InviteListResponse, type InviteRankItem, type InviteSale, type InviteStats, type InviterCreateParams, type JsonArray, type JsonObject, type JsonValue, type KickedUser, type Label, type LanguageInfo, type LikeItem, type LikePageParams, type ListAllChannelBasicParams, type ListAllChannelBasicResponse, type ListAllChannelSimpleParams, type ListAllChannelSimpleResponse, type ListAllocateLogParams, type ListAllocateLogResponse, type ListAllocationLogsParams, type ListAllocationLogsResponse, type ListAnchorRelationsParams, type ListAnchorsParams, type ListAnchorsResponse, type ListAudioModerationRecordsParams, type ListAudioModerationRecordsResponse, type ListBillDetailsParams, type ListBillDetailsResponse, type ListBillingDailyParams, type ListBillingDailyResponse, type ListBulletinsParams, type ListBulletinsResponse, type ListCardPushesParams, type ListCardPushesResponse, type ListChannelBasicParams, type ListChannelProductTagsResponse, type ListChannelSessionsParams, type ListChannelViewerGroupsParams, type ListChannelViewerGroupsResponse, type ListChannelViewersParams, type ListChannelViewersResponse, type ListChannelsFollowParams, type ListChannelsFollowResponse, type ListChannelsLotteryParams, type ListChildAccountsParams, type ListChildAccountsResponse, type ListContentGroupsParams, type ListCustomFieldsResponse, type ListDigitalHumansParams, type ListDigitalHumansResponse, type ListDistributeParams, type ListFollowViewersParams, type ListFollowViewersResponse, type ListGroupUserBillingDailyParams, type ListGroupUserBillingDailyResponse, type ListGroupUserPackagesParams, type ListGroupUserPackagesResponse, type ListInviteSalesParams, type ListInviteSalesResponse, type ListLabelsParams, type ListLabelsResponse, type ListLotteryActivitiesParams, type ListLotteryActivitiesResponse, type ListLotteryParams, type ListMaterialCategoriesParams, type ListMaterialCategoriesResponse, type ListMaterialLabelsParams, type ListMaterialLabelsResponse, type ListMaterialsParams, type ListMaterialsResponse, type ListOrganizationsParams, type ListOrganizationsResponse, type ListPptRecordTasksParams, type ListPptRecordTasksResponse, type ListProductOrdersParams, type ListProductOrdersResponse, type ListProductTagsParams$1 as ListProductTagsParams, type ListProductTagsResponse, type ListProductsParams, type ListProductsResponse, type ListQaParams, type ListQaResponse, type ListQuestionParams, type ListQuestionSendTimeParams, type ListQuestionnaireByPageParams, type ListQuestionnaireParams, type ListRecordFilesParams, type ListRecordFilesResponse, type ListRobotsParams, type ListRobotsResponse, type ListRolesParams, type ListRolesResponse, type ListSessionsParams, type ListSessionsResponse, type ListUnrelatedChannelViewersParams, type ListUnrelatedChannelViewersResponse, type ListVideoModerationResultsParams, type ListVideoModerationResultsResponse, type ListVideoProducePptsParams, type ListVideoProducePptsResponse, type ListVideoProducesParams, type ListVideoProducesResponse, type ListViewerLabelsResponse, type ListViewerRecordsParams, type ListViewerRecordsResponse, type LiveDataParams, type LiveDataSummary, type LiveInteractionChannelId, LiveInteractionService, type LiveInteractionYnFlag, type LiveSessionInfo, type LiveSessionStatsItem, type LiveStatusCallbackPayload, type LiveStatusItem, type LiveStatusListParams, type LiveStatusType, type LiveSummary, type LiveSummaryParams, type LogoParams, type LogoPosition, type LotteryActivity, type LotteryListItem, type LotteryListParams, type LotteryListResponse, type LotteryStatistics, MAX_DATE_RANGE_DAYS, type MarqueeTemplate, type MarqueeUrlParams, type Material, type MaterialCategory, type MaterialExtData, type MaterialInfo, type MaterialLabel, type MaterialPaginatedResponse, type MaterialPaginationParams, type MemberStatusCallbackPayload, type MemberStatusType, type MergeRecordFilesParams, type MergeRecordFilesResponse, type MicDurationParams, type MicDurationResponse$1 as MicDurationResponse, type ModerationLabel, type ModerationResultType, type MonitorListStreamInfoParams, type MonitorStreamInfo, type MonitorStreamInfoPoint, type MovePlaybackVideoParams, type MrConcurrencyDetailResponse, type Mutable, type NewScene, type NonNullable, type OptionalKeys, type Organization, OtherService, type PageMRecordParams, type PageMRecordResponse, type PageSetting, type PaginatedForbidUserData, type PaginationOptions, type PaginationResponse, type PauseRobotParams, type Permission, PlatformService, type PlaybackCallbackPayload, type PlaybackItem, type PlaybackListParams, type PlaybackListResponse, type PlaybackSetting, type PlaybackVideoInfo, type PlaybackVideoInfoByChannel, type PlaybackVideoListItem, type PlaybackVideoMoveType, PlayerService, PolyVAPIError, type PolyVAPIErrorOptions, type PolyVAPIErrorResponse, PolyVClient, type PolyVClientConfig, PolyVError, PolyVErrorCode, type PolyVErrorOptions, PolyVValidationError, type PolyvUrlResponse, type PopularizationInfo, type PopularizationItem, type PopularizationListParams, type PptRecordMutationResponse, type PptRecordSettingResponse, type PptRecordTaskItem, PptStatus, type Primitive, type PrivacyParam, type Product, type ProductIdParams, type ProductLinkType, type ProductOrder, type ProductOrderAddress, type ProductOrderProduct, type ProductPriceType, type ProductSetting, type ProductStatsItem, type ProductStatsPageParams, type ProductStatus, type ProductTag$1 as ProductTag, type ProductType, type PushCardParams, type PushChannelProductParams, type PvShowEnableSettings, type Qa, type QaAnswer, type QueryPlaybackVideoInfoParams, type QueryWinnerViewerParams, type QuestionListItem, type QuestionListResponse, type QuestionRecord, type QuestionRecordUser, type QuestionType, type QuestionnaireDetailResponse, type QuestionnaireListItem, type QuestionnaireListResponse, type QuestionnaireOption, type QuestionnaireQuestion, type QuestionnaireQuestionType, type QuestionnaireResultResponse, type QuestionnaireSavedInfo, type ReceiveListParams, type ReceiveListResponse, type RecordCallbackPayload, type RecordFieldResponse, type RecordInfoItem, type RecordInfoResponse, type RecordedFileItem, type ReferenceProductParams, type ReferenceProductResponse, type RemoveChatContentsParams, type RemoveInviteSaleParams, type RemoveInviteSaleResponse, type RequestOptions, type RequireKeys, type ResolvedClientConfig, type RewardDonateType, type Robot, type RobotSetting, type RobotStats, type Role, type RoleConfig, type RoleConfigTemplate, type RoleDetail, type RolePermission, type SaveRobotItem, type SearchCouponViewersParams, type SearchCouponViewersResponse, type SearchCouponsParams, type SearchCouponsResponse, type SendAdminMsgResponse, type SendCustomMessageEncodeParams, type SendCustomMessageParams, type SendFavorParams, type SendFavorResponse, type SendQuestionParams, type SendQuestionResultParams, type SendRewardMsgParams, type SendRewardMsgResponse, type SendSmsParams, type SessionExternalBySessionParams, type SessionExternalBySessionResponse, type SessionInfo, type SessionRelevanceInfo, type SessionStatsListParams, type SessionStatsListResponse, type SessionStatsSummary, type SetAuthTypeParams, type SetAuthorizedAddressParams, type SetChannelTokenParams, type SetConcurrencesParams, type SetCustomAuthParams, type SetDefaultPlaybackVideoParams, type SetDirectAuthParams, type SetExternalAuthParams, type SetFlowParams, type SetLiveDurationsParams, type SetOrganizationsItem, type SetOrganizationsParams, type SetPlaybackCallbackParams, type SetPlaybackCallbackResponse, type SetPullBitrateExactParams, type SetPullBitrateParams, type SetRecordCallbackParams, type SetRecordCallbackResponse, type SetSpaceParams, type SetStreamCallbackParams, type SetStreamCallbackResponse, type SetStudentQuestionWebhookParams, type SetUserChildrenLoginTokenParams, type SetUserChildrenLoginTokenResponse, type SetUserLoginTokenParams, type SetUserLoginTokenResponse, type SetUserPlaybackEnabledParams, type SetUserPlaybackEnabledResponse, type SetWatchConditionParams, type SexType, type ShareSettings, type ShelfChannelProductParams, type SignParams, type SignatureConfig, type SignatureInput, SignatureMethod, type SignatureOutput, type SignatureResult, type SortChannelProductOrderParams, type SortChannelProductParams, type SortOptions, type SortPlaybackVideosParams, type SsoConfigParams, type SsoConfigResponse, type SsoLoginParams, type SsoLoginResponse, type StatisticsCallbackPayload, StatisticsService, type StopAdvertParams, type StopQuestionParams, type StopQuestionnaireParams, type StopQuestionnaireResponse, type StopTaskRewardParams, type StudentQuestionWebhookMutationResponse, type StudentQuestionWebhookResponse, type SubAuthType, type SubmeetingChannelInput, type SubmitAcceptInfoParams, type SubtitleConfig, type SubtitleConfigParams, type SubtitleInfo$1 as SubtitleInfo, type SubtitleLanguageInfo, type SwitchConfigItem, type SwitchGetParams, type SwitchGetResponse, type SwitchUpdateParams, type SwitchUpdateResponse, type TaskReward, type TaskRewardPageParams, type TaskRewardStats, type TaskRewardViewerDetail, type TeacherAnswerMessageType, type TeacherAnswerParams, type TeacherAnswerResponse, type TeacherInfo$1 as TeacherInfo, type TeacherListParams, type Template, type TemplateCashDonate, type TemplateGiftDonate, type TokenLoginUrlParams, type TokenLoginUrlResponse, type TouristExternalHrefConfig, type TransferChannelViewersParams, type TransmitAssociation, type TransmitChannelInfo, type TtsVoice, type TtsVoiceInfo, TtsVoiceTag, type UnconditionalRule, type UnrelatedChannelViewerItem, type UpdateAccountInfoParams, type UpdateAccountParams, type UpdateAccountViewerConfigParams, type UpdateAccountViewerParams, type UpdateAnchorParams, type UpdateAnchorStatusParams, type UpdateAudioModerationSettingParams, type UpdateAudioModerationSettingsParams, type UpdateAuthParams, type UpdateAuthUrlParams, type UpdateBannedUserParams, type UpdateBannedUserResponse, type UpdateBannedViewerParams, type UpdateBannedViewerResponse, type UpdateByRoleParams, type UpdateCallbackParams, type UpdateCardPushParams, type UpdateCategoryNameParams, type UpdateCategoryNameResponse, type UpdateCategoryRankParams, type UpdateCategoryRankResponse, type UpdateChannelConfigParams, type UpdateChannelParams, type UpdateChannelProductEnabledParams, type UpdateChannelProductParams, type UpdateChannelRequest, type UpdateChannelSubtitleBatchParams, type UpdateChannelSubtitleParams, type UpdateChannelTemplateParams, type UpdateChannelViewerGroupParams, type UpdateChannelViewerGroupSettingParams, type UpdateChannelsFollowParams, type UpdateChatEnabledParams, type UpdateChildAccountParams, type UpdateCouponParams, type UpdateCouponsStatusBatchParams, type UpdateDecorateParams, type UpdateDistributeBatchParams, type UpdateDonateParams, type UpdateDonateTemplateParams, type UpdateGlobalFooterParams, type UpdateGlobalSwitchParams, type UpdateGroupUserPackageParams, type UpdateInviteSaleParams, type UpdateInviteSaleResponse, type UpdateLabelParams, type UpdateLotteryActivityParams, type UpdateMarqueeTemplateParams, type UpdateMasterSwitchParams, type UpdateMaterialLabelParams, type UpdatePageSettingParams, type UpdatePlaybackSettingParams, type UpdatePptRecordSettingParams, type UpdateProductParams, type UpdateProductSettingParams, type UpdateProductTagParams$1 as UpdateProductTagParams, type UpdatePvShowEnableParams, type UpdateRobotListSettingParams, type UpdateRobotSettingParams, type UpdateRoleConfigTemplateParams, type UpdateRoleParams, type UpdateSessionParams, type UpdateShareParams, type UpdateSkinBatchParams, type UpdateSkinParams, type UpdateStreamTypeParams, type UpdateSubtitleConfigParams, type UpdateSubtitleParams, type UpdateSwitchParams, type UpdateTaskRewardParams, type UpdateTemplateExactParams, type UpdateVideoModerationSettingParams, type UpdateVideoModerationSettingsParams, type UpdateViewerLabelParams, type UpdateViewerRecordParams, type UpdateViewerUserSystemConfigParams, type UpdateWhiteListParams, type UploadDocRequest, type UploadDocResponse, type UploadOptions, type UploadProgress, type UploadVideoProducePptParams, type UploadVideoProducePptResponse, type UserChannelBasicListParams, type UserChannelBasicListResponse, type UserChildrenChannel, type CreateProductTagParams as UserCreateProductTagParams, type CreateProductTagResponse as UserCreateProductTagResponse, type DeleteProductTagParams as UserDeleteProductTagParams, type MicDurationResponse as UserMicDurationResponse, type UserPaginatedResponse, type UserPaginationParams, type UserPlaybackListParams, type UserPlaybackListResponse, type ProductTag as UserProductTag, type UserSwitchValue, type UpdateProductTagParams as UserUpdateProductTagParams, V4AiService, type ChannelDetail as V4ChannelDetail, type ChannelIdListInput as V4ChannelIdListInput, type V4ChannelPageResponse, V4ChannelService, type SubtitleInfo as V4ChannelSubtitleInfo, V4ChatService, V4GlobalService, V4GroupService, V4MaterialService, type V4PaginatedResponse, type V4PaginationParams, V4PlatformService, V4RobotService, V4StatisticsService, V4UserService, V4WebAppService, VERSION, type ValidationConstraints, type VersionConfig, type VideoModerationResultItem, type VideoModerationSetting, type VideoModerationSettings, type VideoModerationStrategy, type VideoProducePpt, type VideoProducePptConvertType, VideoProduceStatus, type VideoProduceTask, type ViewerApiTokenParams, type ViewerApiTokenResponse, type ViewerFollowUser, type ViewerLabel, type ViewerLogoutParams, type ViewerLotteryWinItem, type ViewerLotteryWinParams, type ViewerLotteryWinResponse, type ViewerRecord, type ViewerSource, ViewlogItem, type WatchConditionResponse, type WatchFeedbackItem, type WatchFeedbackListParams, type WatchFeedbackListResponse, type WatchLogDetailItem, type WatchLogDetailResponse, type WatchLogItem, type WatchType, type WatermarkFontSize, type AuthSetting as WebAuthSetting, type InfoField as WebInfoField, WebService, type WeixinBookingItem, type WeixinBookingListParams, type WeixinBookingListResponse, type WeixinBookingStats, type WeixinBookingStatsParams, type WhiteListItem, type WinnerDetailItem, type WinnerDetailResponse, type WinnerViewerInfo, type YNEnabled, type YNFlag$1 as YNFlag, type cleanChatParams, collectAll, createSignature, type delChatParams, generateSignature, generateTimestamp, getEnvironmentInfo, getErrorCodeCategory, getErrorMessage, getErrorMessageByCode, type getHistoryPageParams, isBrowser, isNode, isPolyVAPIError, isPolyVError, isPolyVErrorCode, isPolyVValidationError, isStartDateBeforeEndDate, isValidDateFormat, isWebWorker, paginate, type sendAdminMsgParams, sortParams, validateDateRange };
|