@iflyrpa/actions 1.2.16-beta.4 → 1.2.16

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.
@@ -1,12 +1,18 @@
1
1
  import { type CommonAction } from "@iflyrpa/share";
2
2
  import type { ActiomCommonParams, Toutiao, Xiaohongshu, Weixin, BaiJiaHao } from "../../../types";
3
- export type ttSearchAction = CommonAction<ActiomCommonParams, Toutiao.FansCount>;
4
- export type xhsSearchAction = CommonAction<ActiomCommonParams, Xiaohongshu.FansCount>;
3
+ export interface GetTTFansSearchParams extends ActiomCommonParams {
4
+ }
5
+ export type ttSearchAction = CommonAction<GetTTFansSearchParams, Toutiao.FansCount>;
6
+ export interface GetXhsFansSearchParams extends ActiomCommonParams {
7
+ }
8
+ export type xhsSearchAction = CommonAction<GetXhsFansSearchParams, Xiaohongshu.FansCount>;
5
9
  export interface GetWxFansSearchParams extends ActiomCommonParams {
6
10
  token: string | number;
7
11
  }
8
12
  export type wxSearchAction = CommonAction<GetWxFansSearchParams, Weixin.FansCount>;
9
- export type bjhSearchAction = CommonAction<ActiomCommonParams, BaiJiaHao.FansCount>;
13
+ export interface GetBjhFansSearchParams extends ActiomCommonParams {
14
+ }
15
+ export type bjhSearchAction = CommonAction<GetBjhFansSearchParams, BaiJiaHao.FansCount>;
10
16
  export declare const TTFansExport: ttSearchAction;
11
17
  export declare const XhsFansExport: xhsSearchAction;
12
18
  export declare const WxFansExport: wxSearchAction;
@@ -8,7 +8,6 @@ export interface ConfigData {
8
8
  name: string;
9
9
  detail: string;
10
10
  is_enable: number;
11
- publish_num_left?: number;
12
11
  }
13
12
  export type PublishAction = CommonAction<GetBaijiahaoConfigParams, ConfigData[]>;
14
13
  export declare const getBaijiahaoConfig: PublishAction;