@iflyrpa/actions 1.2.6-beta.2 → 1.2.7
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/xiaohongshuPublish/index.d.ts +0 -1
- package/dist/bundle.js +16 -78
- package/dist/bundle.js.map +1 -1
- package/dist/index.d.ts +0 -2
- package/dist/index.js +16 -78
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +16 -78
- package/dist/index.mjs.map +1 -1
- package/dist/types.d.ts +1 -6
- package/package.json +2 -2
- package/dist/actions/searchXiaohongshuTopicList/index.d.ts +0 -7
package/dist/types.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export interface ActiomCommonParams {
|
|
|
8
8
|
url?: string;
|
|
9
9
|
cookies: Partial<CookiesSetDetails>[];
|
|
10
10
|
actionType?: "mockApi" | "rpa";
|
|
11
|
+
readonly articleId?: string;
|
|
11
12
|
}
|
|
12
13
|
export interface WeiXinCropResult {
|
|
13
14
|
cdnurl: string;
|
|
@@ -49,12 +50,6 @@ export declare namespace Toutiao {
|
|
|
49
50
|
}
|
|
50
51
|
}
|
|
51
52
|
export declare namespace Xiaohongshu {
|
|
52
|
-
interface Topic {
|
|
53
|
-
id?: string;
|
|
54
|
-
name: string;
|
|
55
|
-
type: string;
|
|
56
|
-
link?: string;
|
|
57
|
-
}
|
|
58
53
|
interface Location {
|
|
59
54
|
address: string;
|
|
60
55
|
city_name: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iflyrpa/actions",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.7",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"module": "./dist/index.mjs",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"form-data": "^4.0.1",
|
|
17
17
|
"htmlparser2": "^9.1.0",
|
|
18
18
|
"mime-types": "^2.1.35",
|
|
19
|
-
"@iflyrpa/share": "0.0.
|
|
19
|
+
"@iflyrpa/share": "0.0.9"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@rslib/core": "^0.4.1",
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { type CommonAction } from "@iflyrpa/share";
|
|
2
|
-
import type { ActiomCommonParams, Xiaohongshu } from "../../types";
|
|
3
|
-
export interface SearchXiaohongshuTopicListParams extends ActiomCommonParams {
|
|
4
|
-
searchValue: string;
|
|
5
|
-
}
|
|
6
|
-
export type PublishAction = CommonAction<SearchXiaohongshuTopicListParams, Xiaohongshu.Topic[]>;
|
|
7
|
-
export declare const searchXiaohongshuTopicList: PublishAction;
|