@iflyrpa/actions 2.0.2 → 3.0.0-beta.0
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/baijiahaoLogin/rpa.d.ts +11 -0
- package/dist/actions/baijiahaoPublish/index.d.ts +4 -0
- package/dist/actions/common/sessionCheck/index.d.ts +4 -0
- package/dist/actions/douyinCheckVerifyQrCode/index.d.ts +84 -0
- package/dist/actions/douyinCreateCommentReply/schema.d.ts +4 -0
- package/dist/actions/douyinGetCollection/schema.d.ts +4 -0
- package/dist/actions/douyinGetCommentList/schema.d.ts +4 -0
- package/dist/actions/douyinGetCommentReplyList/schema.d.ts +4 -0
- package/dist/actions/douyinGetHot/schema.d.ts +4 -0
- package/dist/actions/douyinGetLocation/schema.d.ts +4 -0
- package/dist/actions/douyinGetMusic/schema.d.ts +4 -0
- package/dist/actions/douyinGetMusicByCategory/schema.d.ts +4 -0
- package/dist/actions/douyinGetMusicCategory/index.d.ts +4 -0
- package/dist/actions/douyinGetMusicCategory/schema.d.ts +4 -0
- package/dist/actions/douyinGetTopics/schema.d.ts +4 -0
- package/dist/actions/douyinGetVerifyQrCode/index.d.ts +66 -0
- package/dist/actions/douyinGetWorkList/schema.d.ts +4 -0
- package/dist/actions/douyinLogin/rpa.d.ts +13 -0
- package/dist/actions/douyinPublish/index.d.ts +18 -0
- package/dist/actions/douyinPublish/rpa-server.d.ts +2 -0
- package/dist/actions/getShipinhaoPostList/index.d.ts +1 -0
- package/dist/actions/searchAccountInfo/index.d.ts +4 -0
- package/dist/actions/searchPublishInfo/index.d.ts +4 -0
- package/dist/actions/shipinhaoCheckLinkValidate/schema.d.ts +4 -0
- package/dist/actions/shipinhaoGetLocation/schema.d.ts +4 -0
- package/dist/actions/shipinhaoGetMsg/index.d.ts +65 -0
- package/dist/actions/shipinhaoGetMsg/schema.d.ts +35 -0
- package/dist/actions/shipinhaoGetMsgImage/index.d.ts +25 -0
- package/dist/actions/shipinhaoLogin/rpa.d.ts +11 -0
- package/dist/actions/shipinhaoPublish/index.d.ts +4 -0
- package/dist/actions/shipinhaoSendMsg/index.d.ts +22 -0
- package/dist/actions/shipinhaoSendMsg/schema.d.ts +46 -0
- package/dist/actions/toutiaoLogin/rpa.d.ts +10 -0
- package/dist/actions/toutiaoPublish/index.d.ts +4 -0
- package/dist/actions/weixinLogin/rpa.d.ts +11 -0
- package/dist/actions/weixinPublish/index.d.ts +4 -0
- package/dist/actions/xiaohongshuLogin/rpa.d.ts +29 -0
- package/dist/actions/xiaohongshuPublish/index.d.ts +4 -0
- package/dist/actions/xiaohongshuWebSearch/index.d.ts +4 -0
- package/dist/bundle.js +6082 -2207
- package/dist/bundle.js.map +1 -1
- package/dist/index.d.ts +19 -0
- package/dist/index.js +5366 -1506
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5350 -1495
- package/dist/index.mjs.map +1 -1
- package/dist/types.d.ts +5 -0
- package/dist/utils/douyin/imageUploader.d.ts +3 -3
- package/dist/utils/douyin/verify-parser.d.ts +73 -0
- package/dist/utils/xhs_ob_feed/index.d.ts +6 -0
- package/dist/utils/xhs_ob_feed/mnsvc2.d.ts +8 -0
- package/package.json +3 -1
- package/dist/utils/douyin/sessionDtrait.d.ts +0 -35
package/dist/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { type BaijiahaoPublishParams } from "./actions/baijiahaoPublish";
|
|
|
4
4
|
import { type GetWxFansSearchParams } from "./actions/common/FansTool";
|
|
5
5
|
import { type WxBjhSessionParams } from "./actions/common/sessionCheck";
|
|
6
6
|
import { type CreateShipinhaoCommentParams } from "./actions/createShipinhaoComment";
|
|
7
|
+
import { type DouyinCheckVerifyQrCodeParams } from "./actions/douyinCheckVerifyQrCode";
|
|
7
8
|
import { type DouyinCreateCommentReplyParams } from "./actions/douyinCreateCommentReply";
|
|
8
9
|
import { type DouyinGetCollectionParams } from "./actions/douyinGetCollection";
|
|
9
10
|
import { type DouyinGetCommentListParams } from "./actions/douyinGetCommentList";
|
|
@@ -14,6 +15,7 @@ import { type DouyinGetMusicParams } from "./actions/douyinGetMusic";
|
|
|
14
15
|
import { type DouyinGetMusicByCategoryParams } from "./actions/douyinGetMusicByCategory";
|
|
15
16
|
import { type DouyinGetMusicCategoryParams } from "./actions/douyinGetMusicCategory";
|
|
16
17
|
import { type DouyinGetTopicsParams } from "./actions/douyinGetTopics";
|
|
18
|
+
import { type DouyinGetVerifyQrCodeParams } from "./actions/douyinGetVerifyQrCode";
|
|
17
19
|
import { type DouyinGetWorkListParams } from "./actions/douyinGetWorkList";
|
|
18
20
|
import { DouyinLoginParams } from "./actions/douyinLogin";
|
|
19
21
|
import { type DouyinPublishParams } from "./actions/douyinPublish";
|
|
@@ -46,8 +48,11 @@ import { type SearchXiaohongshuTopicListParams } from "./actions/searchXiaohongs
|
|
|
46
48
|
import { type searchXiaohongshuUserArticleParams } from "./actions/searchXiaohongshuUserArticle";
|
|
47
49
|
import { ShipinhaoCheckLinkValidateParams } from "./actions/shipinhaoCheckLinkValidate";
|
|
48
50
|
import { ShipinhaoGetLocationParams } from "./actions/shipinhaoGetLocation";
|
|
51
|
+
import { ShipinhaoGetMsgParams } from "./actions/shipinhaoGetMsg";
|
|
52
|
+
import { ShipinhaoGetMsgImageParams } from "./actions/shipinhaoGetMsgImage";
|
|
49
53
|
import { ShipinhaoLoginParams } from "./actions/shipinhaoLogin";
|
|
50
54
|
import { type ShipinhaoPublishParams } from "./actions/shipinhaoPublish";
|
|
55
|
+
import { ShipinhaoSendMsgParams } from "./actions/shipinhaoSendMsg";
|
|
51
56
|
import { type ToutiaoLoginParams } from "./actions/toutiaoLogin";
|
|
52
57
|
import { type ToutiaoPublishParams } from "./actions/toutiaoPublish";
|
|
53
58
|
import { type WeitoutiaoPublishParams } from "./actions/weitoutiaoPublish";
|
|
@@ -326,6 +331,8 @@ export declare class Action {
|
|
|
326
331
|
toutiaoPublish(params: ToutiaoPublishParams): Promise<ResponseData<string>>;
|
|
327
332
|
weixinPublish(params: WeixinPublishParams): Promise<ResponseData<string>>;
|
|
328
333
|
douyinPublish(params: DouyinPublishParams): Promise<ResponseData<string>>;
|
|
334
|
+
douyinCheckVerifyQrCode(params: DouyinCheckVerifyQrCodeParams): Promise<ResponseData<import(".").QrCodeCheckResult>>;
|
|
335
|
+
douyinGetVerifyQrCode(params: DouyinGetVerifyQrCodeParams): Promise<ResponseData<import("./actions/douyinGetVerifyQrCode").QrCodeResult>>;
|
|
329
336
|
shipinhaoPublish(params: ShipinhaoPublishParams): Promise<ResponseData<string>>;
|
|
330
337
|
douyinGetTopics(params: DouyinGetTopicsParams): Promise<ResponseData<{
|
|
331
338
|
topics: import("./actions/douyinGetTopics").Topic[];
|
|
@@ -373,6 +380,13 @@ export declare class Action {
|
|
|
373
380
|
total: number;
|
|
374
381
|
address?: import("./actions/shipinhaoGetLocation").Address | undefined;
|
|
375
382
|
}>>;
|
|
383
|
+
shipinhaoGetMsg(params: ShipinhaoGetMsgParams): Promise<ResponseData<{
|
|
384
|
+
sessionInfo: import("./actions/shipinhaoGetMsg").SessionInfo[];
|
|
385
|
+
}>>;
|
|
386
|
+
shipinhaoGetMsgImage(params: ShipinhaoGetMsgImageParams): Promise<ResponseData<{
|
|
387
|
+
base64Img: string;
|
|
388
|
+
}>>;
|
|
389
|
+
shipinhaoSendMsg(params: ShipinhaoSendMsgParams): Promise<ResponseData<any>>;
|
|
376
390
|
}
|
|
377
391
|
type ActionInstance = InstanceType<typeof Action>;
|
|
378
392
|
type MethodParams<T> = {
|
|
@@ -384,6 +398,7 @@ export { type BaijiahaoPublishParams, BaijiahaoPublishParamsSchema } from "./act
|
|
|
384
398
|
export type { sessionCheckResult } from "./actions/common/sessionCheck";
|
|
385
399
|
export { SessionCheckResultSchema, type WxBjhSessionParams, WxBjhSessionParamsSchema, } from "./actions/common/sessionCheck";
|
|
386
400
|
export type { CreateCommentResponse, CreateShipinhaoCommentParams, } from "./actions/createShipinhaoComment";
|
|
401
|
+
export { type DouyinCheckVerifyQrCodeParams, DouyinCheckVerifyQrCodeParamsSchema, type QrCodeCheckResult, type QrCodeStatusConfirmed, type QrCodeStatusExpired, type QrCodeStatusNew, } from "./actions/douyinCheckVerifyQrCode";
|
|
387
402
|
export { type DouyinCreateCommentReplyParams, DouyinCreateCommentReplyParamsSchema, } from "./actions/douyinCreateCommentReply";
|
|
388
403
|
export { type DouyinGetCollectionParams, DouyinGetCollectionParamsSchema } from "./actions/douyinGetCollection";
|
|
389
404
|
export { type DouyinGetCommentListParams, DouyinGetCommentListParamsSchema } from "./actions/douyinGetCommentList";
|
|
@@ -394,6 +409,7 @@ export { type DouyinGetMusicParams, DouyinGetMusicParamsSchema } from "./actions
|
|
|
394
409
|
export { type DouyinGetMusicByCategoryParams, DouyinGetMusicByCategoryParamsSchema, } from "./actions/douyinGetMusicByCategory";
|
|
395
410
|
export { type DouyinGetMusicCategoryParams, DouyinGetMusicCategoryParamsSchema, } from "./actions/douyinGetMusicCategory";
|
|
396
411
|
export { type DouyinGetTopicsParams, DouyinGetTopicsParamsSchema } from "./actions/douyinGetTopics";
|
|
412
|
+
export { type DouyinGetVerifyQrCodeParams, DouyinGetVerifyQrCodeParamsSchema, } from "./actions/douyinGetVerifyQrCode";
|
|
397
413
|
export { type DouyinGetWorkListParams, DouyinGetWorkListParamsSchema } from "./actions/douyinGetWorkList";
|
|
398
414
|
export type { DouyinLoginParams } from "./actions/douyinLogin";
|
|
399
415
|
export { type DouyinPublishParams, DouyinPublishParamsSchema } from "./actions/douyinPublish";
|
|
@@ -411,8 +427,10 @@ export { type FetchArticlesParams, FetchArticlesParamsSchema } from "./actions/s
|
|
|
411
427
|
export { type FetchArticlesData, FetchArticlesDataSchema } from "./actions/searchPublishInfo/types";
|
|
412
428
|
export { type ShipinhaoCheckLinkValidateParams, ShipinhaoCheckLinkValidateParamsSchema, } from "./actions/shipinhaoCheckLinkValidate";
|
|
413
429
|
export { type ShipinhaoGetLocationParams, ShipinhaoGetLocationParamsSchema } from "./actions/shipinhaoGetLocation";
|
|
430
|
+
export { type ShipinhaoGetMsgParams, ShipinhaoGetMsgParamsSchema } from "./actions/shipinhaoGetMsg";
|
|
414
431
|
export type { ShipinhaoLoginParams } from "./actions/shipinhaoLogin";
|
|
415
432
|
export { type ShipinhaoPublishParams, ShipinhaoPublishParamsSchema } from "./actions/shipinhaoPublish";
|
|
433
|
+
export { type ShipinhaoSendMsgParams, ShipinhaoSendMsgParamsSchema } from "./actions/shipinhaoSendMsg";
|
|
416
434
|
export { type ToutiaoPublishParams, ToutiaoPublishParamsSchema } from "./actions/toutiaoPublish";
|
|
417
435
|
export { type WeixinPublishParams, WeixinPublishParamsSchema } from "./actions/weixinPublish";
|
|
418
436
|
export { type XiaohongshuPublishParams, XiaohongshuPublishParamsSchema } from "./actions/xiaohongshuPublish";
|
|
@@ -421,4 +439,5 @@ export { type ActiomCommonParams, ActionCommonParamsSchema } from "./types";
|
|
|
421
439
|
export { getFileState } from "./utils";
|
|
422
440
|
export { Http } from "./utils/http";
|
|
423
441
|
export { ProxyAgent } from "./utils/proxy";
|
|
442
|
+
export { reportLogger } from "./utils/reportLogger";
|
|
424
443
|
export { rpaAction_Server_Mock } from "./actions/xiaohongshuPublish/rpa-server-mock";
|