@iflyrpa/actions 1.2.11-beta.2 → 1.2.11
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 +0 -1
- package/dist/actions/toutiaoPublish/index.d.ts +0 -1
- package/dist/actions/weixinPublish/index.d.ts +0 -1
- package/dist/bundle.js +36 -1442
- package/dist/bundle.js.map +1 -1
- package/dist/index.d.ts +1 -9
- package/dist/index.js +2808 -4227
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +36 -1454
- package/dist/index.mjs.map +1 -1
- package/dist/types.d.ts +5 -21
- package/dist/utils/index.d.ts +0 -9
- package/package.json +1 -1
- package/dist/actions/common/FansTool/index.d.ts +0 -19
package/dist/index.d.ts
CHANGED
|
@@ -4,12 +4,8 @@ import { type GetBaijiahaoActivityParams } from "./actions/getBaijiahaoActivity"
|
|
|
4
4
|
import { type GetToutiaoConfigParams } from "./actions/getToutiaoConfig";
|
|
5
5
|
import { type SearchToutiaoTopicListParams } from "./actions/searchToutiaoTopicList";
|
|
6
6
|
import { type searchXiaohongshuLocationParams } from "./actions/searchXiaohongshuLocation";
|
|
7
|
-
import {
|
|
7
|
+
import { SearchXiaohongshuTopicListParams } from "./actions/searchXiaohongshuTopicList";
|
|
8
8
|
import { type ToutiaoPublishParams } from "./actions/toutiaoPublish";
|
|
9
|
-
import { type GetTTFansSearchParams } from "./actions/common/FansTool";
|
|
10
|
-
import { type GetBjhFansSearchParams } from "./actions/common/FansTool";
|
|
11
|
-
import { type GetWxFansSearchParams } from "./actions/common/FansTool";
|
|
12
|
-
import { type GetXhsFansSearchParams } from "./actions/common/FansTool";
|
|
13
9
|
import { type WeitoutiaoPublishParams } from "./actions/weitoutiaoPublish";
|
|
14
10
|
import { type WeixinPublishParams } from "./actions/weixinPublish";
|
|
15
11
|
import { type WeixinmpPublishParams } from "./actions/weixinmpPublish";
|
|
@@ -19,10 +15,6 @@ export declare class Action {
|
|
|
19
15
|
constructor(task: AutomateTask);
|
|
20
16
|
private bindTask;
|
|
21
17
|
searchToutiaoTopicList(params: SearchToutiaoTopicListParams): Promise<ResponseData<import("./types").Toutiao.Topic[]>>;
|
|
22
|
-
TTFansExport(params: GetTTFansSearchParams): Promise<ResponseData<import("./types").Toutiao.FansCount>>;
|
|
23
|
-
XhsFansExport(params: GetXhsFansSearchParams): Promise<ResponseData<import("./types").Xiaohongshu.FansCount>>;
|
|
24
|
-
WxFansExport(params: GetWxFansSearchParams): Promise<ResponseData<import("./types").Weixin.FansCount>>;
|
|
25
|
-
BjhFansExport(params: GetBjhFansSearchParams): Promise<ResponseData<import("./types").BaiJiaHao.FansCount>>;
|
|
26
18
|
getToutiaoConfig(params: GetToutiaoConfigParams): Promise<ResponseData<import("./actions/getToutiaoConfig").GetToutiaoConfigResult>>;
|
|
27
19
|
baijiahaoPublish(params: BaijiahaoPublishParams): Promise<ResponseData<string>>;
|
|
28
20
|
getBaijiahaoActivity(params: GetBaijiahaoActivityParams): Promise<ResponseData<import("./actions/getBaijiahaoActivity").ActivityData[]>>;
|