polyv-live-api-sdk 1.0.18 → 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.
Files changed (38) hide show
  1. package/dist/index.cjs +427 -157
  2. package/dist/index.cjs.map +1 -1
  3. package/dist/index.d.cts +164 -37
  4. package/dist/index.js +427 -157
  5. package/dist/index.js.map +1 -1
  6. package/dist/services/account.service.d.ts +4 -4
  7. package/dist/services/channel.service.d.ts +13 -8
  8. package/dist/services/channel.service.d.ts.map +1 -1
  9. package/dist/services/chat.service.d.ts +1 -1
  10. package/dist/services/chat.service.d.ts.map +1 -1
  11. package/dist/services/live-interaction.service.d.ts.map +1 -1
  12. package/dist/services/player.service.d.ts +1 -1
  13. package/dist/services/player.service.d.ts.map +1 -1
  14. package/dist/services/statistics.service.d.ts.map +1 -1
  15. package/dist/services/v4/ai.service.d.ts.map +1 -1
  16. package/dist/services/v4/channel.service.d.ts +11 -5
  17. package/dist/services/v4/channel.service.d.ts.map +1 -1
  18. package/dist/services/v4/global.service.d.ts.map +1 -1
  19. package/dist/services/v4/robot.service.d.ts.map +1 -1
  20. package/dist/services/v4/user.service.d.ts.map +1 -1
  21. package/dist/services/v4/webapp.service.d.ts.map +1 -1
  22. package/dist/services/web.service.d.ts +1 -1
  23. package/dist/services/web.service.d.ts.map +1 -1
  24. package/dist/types/account.d.ts +2 -1
  25. package/dist/types/account.d.ts.map +1 -1
  26. package/dist/types/channel.d.ts +59 -10
  27. package/dist/types/channel.d.ts.map +1 -1
  28. package/dist/types/chat-censor-role.d.ts +5 -3
  29. package/dist/types/chat-censor-role.d.ts.map +1 -1
  30. package/dist/types/index.d.ts +1 -1
  31. package/dist/types/index.d.ts.map +1 -1
  32. package/dist/types/player.d.ts +4 -2
  33. package/dist/types/player.d.ts.map +1 -1
  34. package/dist/types/v4-channel.d.ts +53 -6
  35. package/dist/types/v4-channel.d.ts.map +1 -1
  36. package/dist/types/web.d.ts +4 -0
  37. package/dist/types/web.d.ts.map +1 -1
  38. package/package.json +1 -1
package/dist/index.d.cts CHANGED
@@ -1422,18 +1422,54 @@ interface ClipRecordFileResponse {
1422
1422
  fileId: string;
1423
1423
  }
1424
1424
  /**
1425
- * Record Convert Request
1425
+ * Record Convert Request (synchronous)
1426
+ *
1427
+ * Backed by `POST /live/v2/channel/recordFile/{channelId}/convert`. Either
1428
+ * `sessionId` or `fileUrl` must be provided; when only `sessionId` is given the
1429
+ * backend converts that session's recording to VOD.
1426
1430
  */
1427
1431
  interface RecordConvertRequest {
1428
- fileId: string;
1432
+ /** Account user ID (required, included in signature) */
1433
+ userId: string;
1434
+ /** Converted VOD video name (required) */
1435
+ fileName: string;
1436
+ /** Live session ID (one of sessionId/fileUrl is required) */
1437
+ sessionId?: string;
1438
+ /** Recording file URL (one of sessionId/fileUrl is required) */
1439
+ fileUrl?: string;
1440
+ /** Catalog ID */
1441
+ cataid?: string;
1442
+ /** Catalog name */
1443
+ cataname?: string;
1444
+ /** Add to playback list (Y/N) */
1445
+ toPlayList?: 'Y' | 'N';
1446
+ /** Set as default playback video (Y/N) */
1447
+ setAsDefault?: 'Y' | 'N';
1448
+ }
1449
+ /**
1450
+ * Record Convert Async Request
1451
+ *
1452
+ * Backed by `POST /live/v3/channel/record/convert`. Requires `fileIds`
1453
+ * (comma-separated), obtained from the "查询频道录制视频信息" endpoint.
1454
+ */
1455
+ interface RecordConvertAsyncRequest {
1456
+ /** Recording file IDs, comma-separated (required) */
1457
+ fileIds: string;
1458
+ /** Converted file name */
1429
1459
  fileName?: string;
1460
+ /** VOD catalog ID */
1461
+ cataId?: string;
1462
+ /** Callback URL invoked on completion */
1430
1463
  callbackUrl?: string;
1464
+ /** Whether to return success when the VOD already exists (1=yes, 0=no) */
1465
+ canRepeat?: number;
1431
1466
  }
1432
1467
  /**
1433
1468
  * Record Convert Response
1434
1469
  */
1435
1470
  interface RecordConvertResponse {
1436
- fileId: string;
1471
+ /** Converted VOD video ID (vid) */
1472
+ vid: string;
1437
1473
  }
1438
1474
  /**
1439
1475
  * Record Merge Request (for array input)
@@ -1458,10 +1494,34 @@ interface RecordMergeResponse {
1458
1494
  }
1459
1495
  /**
1460
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.
1461
1501
  */
1462
1502
  interface RecordAddBreakpointRequest {
1463
- fileId: string;
1464
- time: number;
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;
1465
1525
  }
1466
1526
  /**
1467
1527
  * Add VOD Playback Request
@@ -3855,7 +3915,8 @@ interface UpdateCategoryNameResponse {
3855
3915
  }
3856
3916
  interface UpdateCategoryRankParams {
3857
3917
  categoryId: number;
3858
- rank: number;
3918
+ /** Move the category to AFTER this category ID (PolyV update-rank contract). */
3919
+ afterCategoryId: number;
3859
3920
  }
3860
3921
  interface UpdateCategoryRankResponse {
3861
3922
  success: boolean;
@@ -6407,16 +6468,60 @@ interface GroupViewerInfo {
6407
6468
  /** Added time */
6408
6469
  addedTime: number;
6409
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
+ }
6410
6496
  /**
6411
6497
  * Parameters for saving interaction event
6412
6498
  */
6413
6499
  interface InteractionEventSaveParams {
6414
6500
  /** Channel ID */
6415
6501
  channelId: string;
6416
- /** Event type */
6417
- eventType: string;
6418
- /** Event data */
6419
- eventData: Record<string, unknown>;
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
+ }>;
6420
6525
  }
6421
6526
  /**
6422
6527
  * Parameters for deleting interaction event
@@ -6424,8 +6529,11 @@ interface InteractionEventSaveParams {
6424
6529
  interface InteractionEventDeleteParams {
6425
6530
  /** Channel ID */
6426
6531
  channelId: string;
6427
- /** Event ID */
6428
- eventId: string;
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[];
6429
6537
  }
6430
6538
  /**
6431
6539
  * Parameters for creating inviter
@@ -12005,9 +12113,11 @@ type HeadAdvertType = 'NONE' | 'IMAGE' | 'FLV';
12005
12113
  interface HeadAdvertParams {
12006
12114
  /** Head advert type: "NONE", "IMAGE", or "FLV" */
12007
12115
  headAdvertType: HeadAdvertType;
12008
- /** Head advert image URL (for IMAGE type) */
12116
+ /** Head advert media URL (广告地址, for IMAGE/FLV type) */
12117
+ headAdvertMediaUrl?: string;
12118
+ /** @deprecated Use headAdvertMediaUrl instead. */
12009
12119
  headAdvertImage?: string;
12010
- /** Head advert FLV URL (for FLV type) */
12120
+ /** @deprecated Use headAdvertMediaUrl instead. */
12011
12121
  headAdvertFlv?: string;
12012
12122
  /** Head advert href (click URL) */
12013
12123
  headAdvertHref?: string;
@@ -13559,6 +13669,8 @@ interface DirectAuthResponse {
13559
13669
  interface GetRecordFieldParams {
13560
13670
  /** Channel ID (required) */
13561
13671
  channelId: string;
13672
+ /** Condition rank: 1 for primary watch condition, 2 for secondary (defaults to 1) */
13673
+ rank?: number;
13562
13674
  }
13563
13675
  /**
13564
13676
  * Record field response
@@ -13652,6 +13764,8 @@ interface EnrollListResponse {
13652
13764
  interface DownloadRecordInfoParams {
13653
13765
  /** Channel ID (required) */
13654
13766
  channelId: string;
13767
+ /** Condition rank: 1 for primary watch condition, 2 for secondary (defaults to 1; affects export table header) */
13768
+ rank?: number;
13655
13769
  }
13656
13770
  /**
13657
13771
  * Update auth URL parameters
@@ -13955,6 +14069,8 @@ declare class ChannelService {
13955
14069
  private validateChannelViewerScope;
13956
14070
  private buildLiveBgConfig;
13957
14071
  private validateRequiredValue;
14072
+ private buildSignedFormBody;
14073
+ private buildSignedFormConfig;
13958
14074
  private validateRequiredText;
13959
14075
  private validateOptionalText;
13960
14076
  private validateOptionalYn;
@@ -14227,7 +14343,8 @@ declare class ChannelService {
14227
14343
  * Update teacher document relation
14228
14344
  *
14229
14345
  * Adds or removes the binding between a teacher and documents.
14230
- * Note: fileIds is passed in the body, other parameters in query string.
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.
14231
14348
  *
14232
14349
  * @param teacherId - The teacher ID
14233
14350
  * @param fileIds - File IDs, comma-separated
@@ -14941,7 +15058,9 @@ declare class ChannelService {
14941
15058
  * @example
14942
15059
  * ```typescript
14943
15060
  * const result = await channelService.recordConvert('ch123456', {
14944
- * fileId: 'file123',
15061
+ * userId: 'user123',
15062
+ * fileName: 'my-vod',
15063
+ * sessionId: 'fvlyin8qz3',
14945
15064
  * });
14946
15065
  * ```
14947
15066
  */
@@ -14949,21 +15068,21 @@ declare class ChannelService {
14949
15068
  /**
14950
15069
  * Record convert async
14951
15070
  *
14952
- * Converts a recording file to VOD asynchronously.
15071
+ * Converts recording files to VOD asynchronously.
14953
15072
  *
14954
15073
  * @param channelId - The channel ID
14955
- * @param options - Convert options
15074
+ * @param options - Convert options (requires comma-separated fileIds)
14956
15075
  * @returns true if submitted successfully
14957
15076
  * @throws PolyVValidationError if required parameters are empty
14958
15077
  *
14959
15078
  * @example
14960
15079
  * ```typescript
14961
15080
  * const result = await channelService.recordConvertAsync('ch123456', {
14962
- * fileId: 'file123',
15081
+ * fileIds: 'file1,file2',
14963
15082
  * });
14964
15083
  * ```
14965
15084
  */
14966
- recordConvertAsync(channelId: string, options: RecordConvertRequest): Promise<boolean>;
15085
+ recordConvertAsync(channelId: string, options: RecordConvertAsyncRequest): Promise<boolean>;
14967
15086
  /**
14968
15087
  * Record file merge (synchronous)
14969
15088
  *
@@ -15017,7 +15136,7 @@ declare class ChannelService {
15017
15136
  * });
15018
15137
  * ```
15019
15138
  */
15020
- recordMergeMp4(channelId: string, options: RecordMergeArrayRequest): Promise<RecordMergeResponse>;
15139
+ recordMergeMp4(channelId: string, options: RecordMergeMp4Request): Promise<RecordMergeResponse>;
15021
15140
  /**
15022
15141
  * Record merge MP4 start
15023
15142
  *
@@ -15035,7 +15154,7 @@ declare class ChannelService {
15035
15154
  * });
15036
15155
  * ```
15037
15156
  */
15038
- recordMergeMp4Start(channelId: string, options: RecordMergeArrayRequest): Promise<boolean>;
15157
+ recordMergeMp4Start(channelId: string, options: RecordMergeMp4Request): Promise<boolean>;
15039
15158
  /**
15040
15159
  * Record add breakpoint
15041
15160
  *
@@ -16443,7 +16562,9 @@ interface GetAdminInfoResponse {
16443
16562
  }
16444
16563
  /**
16445
16564
  * Update admin info request parameters
16446
- * Note: avatar requires file upload (multipart/form-data)
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.
16447
16568
  */
16448
16569
  interface UpdateAdminInfoParams {
16449
16570
  /** 频道号 */
@@ -16452,8 +16573,8 @@ interface UpdateAdminInfoParams {
16452
16573
  nickname: string;
16453
16574
  /** 管理员头衔,长度不能超过4 */
16454
16575
  actor: string;
16455
- /** 管理员头像URL,支持jpg、jpeg、png三种格式,大小不能超过2Mb */
16456
- avatar?: string;
16576
+ /** 管理员头像文件(File/Blob/Buffer),支持jpg、jpeg、png三种格式,大小不能超过2Mb */
16577
+ avatar: Blob | File | Buffer;
16457
16578
  }
16458
16579
  /**
16459
16580
  * Update admin info response
@@ -16864,7 +16985,7 @@ declare class ChatService {
16864
16985
  * channelId: '123456',
16865
16986
  * nickname: '管理员',
16866
16987
  * actor: '管理员1',
16867
- * avatar: imageBuffer,
16988
+ * avatar: avatarFile,
16868
16989
  * });
16869
16990
  * console.log(result.data);
16870
16991
  * ```
@@ -17446,10 +17567,10 @@ declare class AccountService {
17446
17567
  *
17447
17568
  * @example
17448
17569
  * ```typescript
17449
- * const result = await client.account.updateCategoryRank({
17450
- * categoryId: 12345,
17451
- * rank: 1,
17452
- * });
17570
+ * const result = await client.account.updateCategoryRank({
17571
+ * categoryId: 12345,
17572
+ * afterCategoryId: 67890,
17573
+ * });
17453
17574
  * console.log(result.success);
17454
17575
  * ```
17455
17576
  */
@@ -18410,7 +18531,7 @@ declare class WebService {
18410
18531
  *
18411
18532
  * @example
18412
18533
  * ```typescript
18413
- * const result = await client.web.getRecordField({ channelId: '123456' });
18534
+ * const result = await client.web.getRecordField({ channelId: '123456', rank: 1 });
18414
18535
  * console.log(result.infoFields);
18415
18536
  * ```
18416
18537
  */
@@ -19164,7 +19285,7 @@ declare class PlayerService {
19164
19285
  * ```typescript
19165
19286
  * await client.player.updateHeadAdvert(123456, {
19166
19287
  * headAdvertType: 'IMAGE',
19167
- * headAdvertImage: 'https://example.com/ad.jpg',
19288
+ * headAdvertMediaUrl: 'https://example.com/ad.jpg',
19168
19289
  * });
19169
19290
  * ```
19170
19291
  */
@@ -20826,17 +20947,23 @@ declare class V4ChannelService {
20826
20947
  */
20827
20948
  groupViewerList(params: GroupViewerListParams): Promise<GroupViewerInfo[]>;
20828
20949
  /**
20829
- * 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.
20830
20954
  *
20831
20955
  * @param params - Save parameters
20832
20956
  */
20833
- interactionEventSave(params: InteractionEventSaveParams): Promise<void>;
20957
+ interactionEventSave(params: InteractionEventSaveParams): Promise<InteractionEventSaveResponse>;
20834
20958
  /**
20835
- * 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).
20836
20963
  *
20837
20964
  * @param params - Delete parameters
20838
20965
  */
20839
- interactionEventDelete(params: InteractionEventDeleteParams): Promise<void>;
20966
+ interactionEventDelete(params: InteractionEventDeleteParams): Promise<boolean>;
20840
20967
  /**
20841
20968
  * Create inviter
20842
20969
  *
@@ -24081,4 +24208,4 @@ declare function getErrorCodeCategory(code: number): string;
24081
24208
  */
24082
24209
  declare const VERSION = "1.0.0";
24083
24210
 
24084
- 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 };