@iflyrpa/actions 1.2.11 → 1.2.12
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/actions/baijiahaoPublish/index.d.ts +7 -1
- package/dist/actions/common/FansTool/index.d.ts +19 -0
- package/dist/actions/getBaijiaohaoConfig/index.d.ts +13 -0
- package/dist/actions/searchToutiaoLocation/index.d.ts +7 -0
- package/dist/actions/searchToutiaoUserID/index.d.ts +7 -0
- package/dist/actions/toutiaoPublish/index.d.ts +16 -0
- package/dist/actions/weixinPublish/index.d.ts +1 -0
- package/dist/bundle.js +1619 -80
- package/dist/bundle.js.map +1 -1
- package/dist/index.d.ts +15 -1
- package/dist/index.js +4353 -2801
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1631 -80
- package/dist/index.mjs.map +1 -1
- package/dist/types.d.ts +35 -5
- package/dist/utils/index.d.ts +9 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2,10 +2,17 @@ import type { AutomateTask, ResponseData } from "@iflyrpa/share";
|
|
|
2
2
|
import { type BaijiahaoPublishParams } from "./actions/baijiahaoPublish";
|
|
3
3
|
import { type GetBaijiahaoActivityParams } from "./actions/getBaijiahaoActivity";
|
|
4
4
|
import { type GetToutiaoConfigParams } from "./actions/getToutiaoConfig";
|
|
5
|
+
import { type GetBaijiahaoConfigParams } from "./actions/getBaijiaohaoConfig";
|
|
5
6
|
import { type SearchToutiaoTopicListParams } from "./actions/searchToutiaoTopicList";
|
|
7
|
+
import { type SearchToutiaoLocationParams } from "./actions/searchToutiaoLocation";
|
|
8
|
+
import { type SearchToutiaoUserIDParams } from "./actions/searchToutiaoUserID";
|
|
6
9
|
import { type searchXiaohongshuLocationParams } from "./actions/searchXiaohongshuLocation";
|
|
7
|
-
import { SearchXiaohongshuTopicListParams } from "./actions/searchXiaohongshuTopicList";
|
|
10
|
+
import { type SearchXiaohongshuTopicListParams } from "./actions/searchXiaohongshuTopicList";
|
|
8
11
|
import { type ToutiaoPublishParams } from "./actions/toutiaoPublish";
|
|
12
|
+
import { type GetTTFansSearchParams } from "./actions/common/FansTool";
|
|
13
|
+
import { type GetBjhFansSearchParams } from "./actions/common/FansTool";
|
|
14
|
+
import { type GetWxFansSearchParams } from "./actions/common/FansTool";
|
|
15
|
+
import { type GetXhsFansSearchParams } from "./actions/common/FansTool";
|
|
9
16
|
import { type WeitoutiaoPublishParams } from "./actions/weitoutiaoPublish";
|
|
10
17
|
import { type WeixinPublishParams } from "./actions/weixinPublish";
|
|
11
18
|
import { type WeixinmpPublishParams } from "./actions/weixinmpPublish";
|
|
@@ -15,7 +22,14 @@ export declare class Action {
|
|
|
15
22
|
constructor(task: AutomateTask);
|
|
16
23
|
private bindTask;
|
|
17
24
|
searchToutiaoTopicList(params: SearchToutiaoTopicListParams): Promise<ResponseData<import("./types").Toutiao.Topic[]>>;
|
|
25
|
+
TTFansExport(params: GetTTFansSearchParams): Promise<ResponseData<import("./types").Toutiao.FansCount>>;
|
|
26
|
+
XhsFansExport(params: GetXhsFansSearchParams): Promise<ResponseData<import("./types").Xiaohongshu.FansCount>>;
|
|
27
|
+
WxFansExport(params: GetWxFansSearchParams): Promise<ResponseData<import("./types").Weixin.FansCount>>;
|
|
28
|
+
BjhFansExport(params: GetBjhFansSearchParams): Promise<ResponseData<import("./types").BaiJiaHao.FansCount>>;
|
|
29
|
+
searchToutiaoUserID(params: SearchToutiaoUserIDParams): Promise<ResponseData<import("./types").Toutiao.SuggestWords[]>>;
|
|
30
|
+
searchToutiaoLocation(params: SearchToutiaoLocationParams): Promise<ResponseData<import("./types").Toutiao.CityPoi[]>>;
|
|
18
31
|
getToutiaoConfig(params: GetToutiaoConfigParams): Promise<ResponseData<import("./actions/getToutiaoConfig").GetToutiaoConfigResult>>;
|
|
32
|
+
getBaijiahaoConfig(params: GetBaijiahaoConfigParams): Promise<ResponseData<import("./actions/getBaijiaohaoConfig").ConfigData[]>>;
|
|
19
33
|
baijiahaoPublish(params: BaijiahaoPublishParams): Promise<ResponseData<string>>;
|
|
20
34
|
getBaijiahaoActivity(params: GetBaijiahaoActivityParams): Promise<ResponseData<import("./actions/getBaijiahaoActivity").ActivityData[]>>;
|
|
21
35
|
xiaohongshuPublish(params: XiaohongshuPublishParams): Promise<ResponseData<string>>;
|