@iflyrpa/actions 1.2.30-beta.3 → 1.2.30-beta.5
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 +61 -39
- package/dist/actions/searchAccountInfo/types.d.ts +0 -1
- package/dist/actions/toutiaoPublish/index.d.ts +63 -46
- package/dist/actions/weitoutiaoPublish/index.d.ts +1 -1
- package/dist/actions/weixinPublish/index.d.ts +94 -31
- package/dist/bundle.js +388 -60
- package/dist/bundle.js.map +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.js +388 -60
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +385 -60
- package/dist/index.mjs.map +1 -1
- package/dist/types.d.ts +2 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { LoggerImplement } from "@iflyrpa/share";
|
|
2
2
|
import type { CreateAxiosDefaults } from "axios";
|
|
3
3
|
import { z } from "zod";
|
|
4
|
+
import { SearchAccountInfoResponse } from "./actions/searchAccountInfo/types";
|
|
4
5
|
declare module "axios" {
|
|
5
6
|
interface AxiosRequestConfig {
|
|
6
7
|
defaultErrorMsg?: string;
|
|
@@ -140,3 +141,4 @@ export declare namespace Xiaohongshu {
|
|
|
140
141
|
type: string;
|
|
141
142
|
}
|
|
142
143
|
}
|
|
144
|
+
export declare const errorResponse: (message: string, code?: number) => SearchAccountInfoResponse;
|