@iflyrpa/actions 1.2.25-beta.4 → 1.2.25-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/common/FansTool/index.d.ts +1 -1
- package/dist/actions/common/sessionCheck/index.d.ts +4 -28
- package/dist/actions/getBaijiaohaoConfig/index.d.ts +9 -7
- package/dist/actions/getXhsCollection/index.d.ts +11 -17
- package/dist/actions/getXhsGroup/index.d.ts +1 -1
- package/dist/actions/getXhsWebUnreadCount/index.d.ts +1 -1
- package/dist/actions/searchAccountInfo/getBjhInfo.d.ts +1 -1
- package/dist/actions/searchAccountInfo/getTTInfo.d.ts +1 -1
- package/dist/actions/searchAccountInfo/getWxInfo.d.ts +1 -1
- package/dist/actions/searchAccountInfo/getXhsInfo.d.ts +1 -1
- package/dist/actions/searchAccountInfo/index.d.ts +4 -28
- package/dist/actions/searchAccountInfo/types.d.ts +1 -1
- package/dist/actions/searchPublishInfo/handleBjhData.d.ts +1 -1
- package/dist/actions/searchPublishInfo/handleTTData.d.ts +1 -1
- package/dist/actions/searchPublishInfo/handleXhsData.d.ts +1 -1
- package/dist/actions/searchPublishInfo/index.d.ts +4 -28
- package/dist/actions/searchPublishInfo/types.d.ts +1 -1
- package/dist/actions/weixinPublish/index.d.ts +1 -1
- package/dist/actions/xiaohongshuPublish/index.d.ts +19 -47
- package/dist/bundle.js +24595 -24607
- package/dist/bundle.js.map +1 -1
- package/dist/index.d.ts +45 -40
- package/dist/index.js +11142 -11123
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9020 -9002
- package/dist/index.mjs.map +1 -1
- package/dist/types.d.ts +3 -27
- package/dist/utils/http.d.ts +1 -4
- package/dist/utils/proxy.d.ts +1 -1
- package/package.json +2 -2
- package/dist/actions/xiaohongshuLogin/utils.d.ts +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type CommonAction } from "@iflyrpa/share";
|
|
2
|
-
import type { ActiomCommonParams,
|
|
2
|
+
import type { ActiomCommonParams, BaiJiaHao, Toutiao, Weixin, Xiaohongshu } from "../../../types";
|
|
3
3
|
export type ttSearchAction = CommonAction<ActiomCommonParams, Toutiao.FansCount>;
|
|
4
4
|
export type xhsSearchAction = CommonAction<ActiomCommonParams, Xiaohongshu.FansCount>;
|
|
5
5
|
export interface GetWxFansSearchParams extends ActiomCommonParams {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type CommonAction } from "@iflyrpa/share";
|
|
2
|
-
import type { ActiomCommonParams } from "../../../types";
|
|
3
2
|
import { z } from "zod";
|
|
3
|
+
import type { ActiomCommonParams } from "../../../types";
|
|
4
4
|
export declare const SessionCheckResultSchema: z.ZodObject<{
|
|
5
5
|
isValidSession: z.ZodBoolean;
|
|
6
6
|
}, z.core.$strip>;
|
|
@@ -8,38 +8,14 @@ export type sessionCheckResult = z.infer<typeof SessionCheckResultSchema>;
|
|
|
8
8
|
export declare const WxBjhSessionParamsSchema: z.ZodObject<{
|
|
9
9
|
url: z.ZodOptional<z.ZodString>;
|
|
10
10
|
cookies: z.ZodArray<z.ZodObject<{
|
|
11
|
+
name: z.ZodString;
|
|
12
|
+
value: z.ZodString;
|
|
11
13
|
domain: z.ZodOptional<z.ZodString>;
|
|
12
14
|
path: z.ZodOptional<z.ZodString>;
|
|
13
15
|
expires: z.ZodOptional<z.ZodNumber>;
|
|
14
16
|
httpOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15
17
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
16
|
-
|
|
17
|
-
name: z.ZodString;
|
|
18
|
-
value: z.ZodString;
|
|
19
|
-
url: z.ZodOptional<z.ZodString>;
|
|
20
|
-
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
21
|
-
Strict: "Strict";
|
|
22
|
-
Lax: "Lax";
|
|
23
|
-
None: "None";
|
|
24
|
-
}>>;
|
|
25
|
-
size: z.ZodOptional<z.ZodNumber>;
|
|
26
|
-
partitionKey: z.ZodOptional<z.ZodObject<{
|
|
27
|
-
topLevelSite: z.ZodString;
|
|
28
|
-
hasCrossSiteAncestor: z.ZodBoolean;
|
|
29
|
-
}, z.core.$strip>>;
|
|
30
|
-
priority: z.ZodOptional<z.ZodEnum<{
|
|
31
|
-
Low: "Low";
|
|
32
|
-
Medium: "Medium";
|
|
33
|
-
High: "High";
|
|
34
|
-
}>>;
|
|
35
|
-
sameParty: z.ZodOptional<z.ZodBoolean>;
|
|
36
|
-
sourceScheme: z.ZodOptional<z.ZodEnum<{
|
|
37
|
-
Unset: "Unset";
|
|
38
|
-
NonSecure: "NonSecure";
|
|
39
|
-
Secure: "Secure";
|
|
40
|
-
}>>;
|
|
41
|
-
sourcePort: z.ZodOptional<z.ZodNumber>;
|
|
42
|
-
}, z.core.$strip>>;
|
|
18
|
+
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
43
19
|
actionType: z.ZodOptional<z.ZodEnum<{
|
|
44
20
|
mockApi: "mockApi";
|
|
45
21
|
rpa: "rpa";
|
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
import { type CommonAction } from "@iflyrpa/share";
|
|
2
|
+
import { z } from "zod";
|
|
2
3
|
import type { ActiomCommonParams } from "../../types";
|
|
3
4
|
export interface GetBaijiahaoConfigParams extends ActiomCommonParams {
|
|
4
5
|
token: string;
|
|
5
6
|
}
|
|
6
|
-
export
|
|
7
|
-
id:
|
|
8
|
-
name:
|
|
9
|
-
detail:
|
|
10
|
-
is_enable:
|
|
11
|
-
publish_num_left
|
|
12
|
-
}
|
|
7
|
+
export declare const ConfigDataSchema: z.ZodObject<{
|
|
8
|
+
id: z.ZodString;
|
|
9
|
+
name: z.ZodString;
|
|
10
|
+
detail: z.ZodString;
|
|
11
|
+
is_enable: z.ZodNumber;
|
|
12
|
+
publish_num_left: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
13
|
+
}, z.core.$strip>;
|
|
14
|
+
export type ConfigData = z.infer<typeof ConfigDataSchema>;
|
|
13
15
|
export type PublishAction = CommonAction<GetBaijiahaoConfigParams, ConfigData[]>;
|
|
14
16
|
export declare const getBaijiahaoConfig: PublishAction;
|
|
@@ -1,32 +1,26 @@
|
|
|
1
1
|
import { type CommonAction } from "@iflyrpa/share";
|
|
2
|
-
import type { ActiomCommonParams } from "../../types";
|
|
3
2
|
import { z } from "zod";
|
|
3
|
+
import type { ActiomCommonParams } from "../../types";
|
|
4
4
|
export interface CollectionResponse {
|
|
5
5
|
success: boolean;
|
|
6
6
|
result: number;
|
|
7
7
|
data: {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
nickname: string;
|
|
11
|
-
url: string;
|
|
12
|
-
};
|
|
13
|
-
collections: CollectionDetail[];
|
|
8
|
+
has_more: boolean;
|
|
9
|
+
collection_info_list: CollectionDetail[];
|
|
14
10
|
};
|
|
15
11
|
}
|
|
16
12
|
export declare const CollectionDetailSchema: z.ZodObject<{
|
|
17
13
|
id: z.ZodString;
|
|
18
14
|
name: z.ZodString;
|
|
15
|
+
icon: z.ZodString;
|
|
16
|
+
note_num: z.ZodNumber;
|
|
17
|
+
view_num: z.ZodNumber;
|
|
18
|
+
paid: z.ZodNumber;
|
|
19
|
+
type: z.ZodNumber;
|
|
20
|
+
collected: z.ZodBoolean;
|
|
19
21
|
desc: z.ZodString;
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
viewNum: z.ZodNumber;
|
|
23
|
-
cursor: z.ZodString;
|
|
24
|
-
enabled: z.ZodBoolean;
|
|
25
|
-
status: z.ZodNumber;
|
|
26
|
-
createTime: z.ZodNumber;
|
|
27
|
-
unreadCount: z.ZodNumber;
|
|
28
|
-
coverImage: z.ZodNull;
|
|
29
|
-
deeplink: z.ZodString;
|
|
22
|
+
total_episodes: z.ZodNumber;
|
|
23
|
+
create_time: z.ZodNumber;
|
|
30
24
|
}, z.core.$strip>;
|
|
31
25
|
export type CollectionDetail = z.infer<typeof CollectionDetailSchema>;
|
|
32
26
|
export type PublishAction = CommonAction<ActiomCommonParams, CollectionDetail[]>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type CommonAction } from "@iflyrpa/share";
|
|
2
|
-
import type { ActiomCommonParams } from "../../types";
|
|
3
2
|
import { z } from "zod";
|
|
3
|
+
import type { ActiomCommonParams } from "../../types";
|
|
4
4
|
export declare const UnreadCountSchema: z.ZodObject<{
|
|
5
5
|
connections: z.ZodNullable<z.ZodNumber>;
|
|
6
6
|
mentions: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { AutomateTask } from "@iflyrpa/share";
|
|
2
|
-
import { SearchAccountInfoResponse } from "./types";
|
|
3
2
|
import { type SearchAccountInfoParams } from ".";
|
|
3
|
+
import { SearchAccountInfoResponse } from "./types";
|
|
4
4
|
export declare function getBaijiahaoData(_task: AutomateTask, params: SearchAccountInfoParams): Promise<SearchAccountInfoResponse>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { AutomateTask } from "@iflyrpa/share";
|
|
2
|
-
import { SearchAccountInfoResponse } from "./types";
|
|
3
2
|
import { type SearchAccountInfoParams } from ".";
|
|
3
|
+
import { SearchAccountInfoResponse } from "./types";
|
|
4
4
|
export declare function getToutiaoData(_task: AutomateTask, params: SearchAccountInfoParams): Promise<SearchAccountInfoResponse>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { AutomateTask } from "@iflyrpa/share";
|
|
2
|
-
import { SearchAccountInfoResponse } from "./types";
|
|
3
2
|
import { type SearchAccountInfoParams } from ".";
|
|
3
|
+
import { SearchAccountInfoResponse } from "./types";
|
|
4
4
|
export declare function getWeixinData(_task: AutomateTask, params: SearchAccountInfoParams): Promise<SearchAccountInfoResponse>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { AutomateTask } from "@iflyrpa/share";
|
|
2
|
-
import { type SearchAccountInfoResponse } from "./types";
|
|
3
2
|
import type { SearchAccountInfoParams } from ".";
|
|
3
|
+
import { type SearchAccountInfoResponse } from "./types";
|
|
4
4
|
export declare function getXiaohongshuData(_task: AutomateTask, params: SearchAccountInfoParams): Promise<SearchAccountInfoResponse>;
|
|
@@ -1,41 +1,17 @@
|
|
|
1
1
|
import { type CommonAction } from "@iflyrpa/share";
|
|
2
|
-
import { ttConfigData, xhsConfigData, wxConfigData, bjhConfigData } from "./types";
|
|
3
2
|
import { z } from "zod";
|
|
3
|
+
import { bjhConfigData, ttConfigData, wxConfigData, xhsConfigData } from "./types";
|
|
4
4
|
export declare const SearchAccountInfoParamsSchema: z.ZodObject<{
|
|
5
5
|
url: z.ZodOptional<z.ZodString>;
|
|
6
6
|
cookies: z.ZodArray<z.ZodObject<{
|
|
7
|
+
name: z.ZodString;
|
|
8
|
+
value: z.ZodString;
|
|
7
9
|
domain: z.ZodOptional<z.ZodString>;
|
|
8
10
|
path: z.ZodOptional<z.ZodString>;
|
|
9
11
|
expires: z.ZodOptional<z.ZodNumber>;
|
|
10
12
|
httpOnly: z.ZodOptional<z.ZodBoolean>;
|
|
11
13
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
12
|
-
|
|
13
|
-
name: z.ZodString;
|
|
14
|
-
value: z.ZodString;
|
|
15
|
-
url: z.ZodOptional<z.ZodString>;
|
|
16
|
-
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
17
|
-
Strict: "Strict";
|
|
18
|
-
Lax: "Lax";
|
|
19
|
-
None: "None";
|
|
20
|
-
}>>;
|
|
21
|
-
size: z.ZodOptional<z.ZodNumber>;
|
|
22
|
-
partitionKey: z.ZodOptional<z.ZodObject<{
|
|
23
|
-
topLevelSite: z.ZodString;
|
|
24
|
-
hasCrossSiteAncestor: z.ZodBoolean;
|
|
25
|
-
}, z.core.$strip>>;
|
|
26
|
-
priority: z.ZodOptional<z.ZodEnum<{
|
|
27
|
-
Low: "Low";
|
|
28
|
-
Medium: "Medium";
|
|
29
|
-
High: "High";
|
|
30
|
-
}>>;
|
|
31
|
-
sameParty: z.ZodOptional<z.ZodBoolean>;
|
|
32
|
-
sourceScheme: z.ZodOptional<z.ZodEnum<{
|
|
33
|
-
Unset: "Unset";
|
|
34
|
-
NonSecure: "NonSecure";
|
|
35
|
-
Secure: "Secure";
|
|
36
|
-
}>>;
|
|
37
|
-
sourcePort: z.ZodOptional<z.ZodNumber>;
|
|
38
|
-
}, z.core.$strip>>;
|
|
14
|
+
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
39
15
|
actionType: z.ZodOptional<z.ZodEnum<{
|
|
40
16
|
mockApi: "mockApi";
|
|
41
17
|
rpa: "rpa";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { AutomateTask } from "@iflyrpa/share";
|
|
2
|
-
import { type FetchArticlesResponse } from "./types";
|
|
3
2
|
import type { FetchArticlesParams } from ".";
|
|
3
|
+
import { type FetchArticlesResponse } from "./types";
|
|
4
4
|
export declare function handleBaijiahaoData(_task: AutomateTask, params: FetchArticlesParams): Promise<FetchArticlesResponse>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { AutomateTask } from "@iflyrpa/share";
|
|
2
|
-
import { FetchArticlesResponse } from "./types";
|
|
3
2
|
import { type FetchArticlesParams } from ".";
|
|
3
|
+
import { FetchArticlesResponse } from "./types";
|
|
4
4
|
export declare function handleToutiaoData(_task: AutomateTask, params: FetchArticlesParams): Promise<FetchArticlesResponse>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { AutomateTask } from "@iflyrpa/share";
|
|
2
|
-
import { type FetchArticlesResponse } from "./types";
|
|
3
2
|
import type { FetchArticlesParams } from ".";
|
|
3
|
+
import { type FetchArticlesResponse } from "./types";
|
|
4
4
|
export declare function handleXiaohongshuData(_task: AutomateTask, params: FetchArticlesParams): Promise<FetchArticlesResponse>;
|
|
@@ -1,41 +1,17 @@
|
|
|
1
1
|
import { type CommonAction } from "@iflyrpa/share";
|
|
2
|
-
import type { FetchArticlesData } from "./types";
|
|
3
2
|
import { z } from "zod";
|
|
3
|
+
import type { FetchArticlesData } from "./types";
|
|
4
4
|
export declare const FetchArticlesParamsSchema: z.ZodObject<{
|
|
5
5
|
url: z.ZodOptional<z.ZodString>;
|
|
6
6
|
cookies: z.ZodArray<z.ZodObject<{
|
|
7
|
+
name: z.ZodString;
|
|
8
|
+
value: z.ZodString;
|
|
7
9
|
domain: z.ZodOptional<z.ZodString>;
|
|
8
10
|
path: z.ZodOptional<z.ZodString>;
|
|
9
11
|
expires: z.ZodOptional<z.ZodNumber>;
|
|
10
12
|
httpOnly: z.ZodOptional<z.ZodBoolean>;
|
|
11
13
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
12
|
-
|
|
13
|
-
name: z.ZodString;
|
|
14
|
-
value: z.ZodString;
|
|
15
|
-
url: z.ZodOptional<z.ZodString>;
|
|
16
|
-
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
17
|
-
Strict: "Strict";
|
|
18
|
-
Lax: "Lax";
|
|
19
|
-
None: "None";
|
|
20
|
-
}>>;
|
|
21
|
-
size: z.ZodOptional<z.ZodNumber>;
|
|
22
|
-
partitionKey: z.ZodOptional<z.ZodObject<{
|
|
23
|
-
topLevelSite: z.ZodString;
|
|
24
|
-
hasCrossSiteAncestor: z.ZodBoolean;
|
|
25
|
-
}, z.core.$strip>>;
|
|
26
|
-
priority: z.ZodOptional<z.ZodEnum<{
|
|
27
|
-
Low: "Low";
|
|
28
|
-
Medium: "Medium";
|
|
29
|
-
High: "High";
|
|
30
|
-
}>>;
|
|
31
|
-
sameParty: z.ZodOptional<z.ZodBoolean>;
|
|
32
|
-
sourceScheme: z.ZodOptional<z.ZodEnum<{
|
|
33
|
-
Unset: "Unset";
|
|
34
|
-
NonSecure: "NonSecure";
|
|
35
|
-
Secure: "Secure";
|
|
36
|
-
}>>;
|
|
37
|
-
sourcePort: z.ZodOptional<z.ZodNumber>;
|
|
38
|
-
}, z.core.$strip>>;
|
|
14
|
+
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
39
15
|
actionType: z.ZodOptional<z.ZodEnum<{
|
|
40
16
|
mockApi: "mockApi";
|
|
41
17
|
rpa: "rpa";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { CommonAction } from "@iflyrpa/share";
|
|
2
2
|
import type { ActiomCommonParams } from "../../types";
|
|
3
|
-
import type { CollectDetail } from
|
|
3
|
+
import type { CollectDetail } from "../getWeixinCollection";
|
|
4
4
|
export interface WxInteraction {
|
|
5
5
|
Type: "public" | "private" | "off";
|
|
6
6
|
Option?: {
|
|
@@ -4,38 +4,14 @@ import { type Xiaohongshu } from "../../types";
|
|
|
4
4
|
export declare const XiaohongshuPublishParamsSchema: z.ZodObject<{
|
|
5
5
|
url: z.ZodOptional<z.ZodString>;
|
|
6
6
|
cookies: z.ZodArray<z.ZodObject<{
|
|
7
|
+
name: z.ZodString;
|
|
8
|
+
value: z.ZodString;
|
|
7
9
|
domain: z.ZodOptional<z.ZodString>;
|
|
8
10
|
path: z.ZodOptional<z.ZodString>;
|
|
9
11
|
expires: z.ZodOptional<z.ZodNumber>;
|
|
10
12
|
httpOnly: z.ZodOptional<z.ZodBoolean>;
|
|
11
13
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
12
|
-
|
|
13
|
-
name: z.ZodString;
|
|
14
|
-
value: z.ZodString;
|
|
15
|
-
url: z.ZodOptional<z.ZodString>;
|
|
16
|
-
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
17
|
-
Strict: "Strict";
|
|
18
|
-
Lax: "Lax";
|
|
19
|
-
None: "None";
|
|
20
|
-
}>>;
|
|
21
|
-
size: z.ZodOptional<z.ZodNumber>;
|
|
22
|
-
partitionKey: z.ZodOptional<z.ZodObject<{
|
|
23
|
-
topLevelSite: z.ZodString;
|
|
24
|
-
hasCrossSiteAncestor: z.ZodBoolean;
|
|
25
|
-
}, z.core.$strip>>;
|
|
26
|
-
priority: z.ZodOptional<z.ZodEnum<{
|
|
27
|
-
Low: "Low";
|
|
28
|
-
Medium: "Medium";
|
|
29
|
-
High: "High";
|
|
30
|
-
}>>;
|
|
31
|
-
sameParty: z.ZodOptional<z.ZodBoolean>;
|
|
32
|
-
sourceScheme: z.ZodOptional<z.ZodEnum<{
|
|
33
|
-
Unset: "Unset";
|
|
34
|
-
NonSecure: "NonSecure";
|
|
35
|
-
Secure: "Secure";
|
|
36
|
-
}>>;
|
|
37
|
-
sourcePort: z.ZodOptional<z.ZodNumber>;
|
|
38
|
-
}, z.core.$strip>>;
|
|
14
|
+
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
39
15
|
actionType: z.ZodOptional<z.ZodEnum<{
|
|
40
16
|
mockApi: "mockApi";
|
|
41
17
|
rpa: "rpa";
|
|
@@ -84,31 +60,27 @@ export declare const XiaohongshuPublishParamsSchema: z.ZodObject<{
|
|
|
84
60
|
collectionBind: z.ZodOptional<z.ZodCustom<{
|
|
85
61
|
id: string;
|
|
86
62
|
name: string;
|
|
63
|
+
icon: string;
|
|
64
|
+
note_num: number;
|
|
65
|
+
view_num: number;
|
|
66
|
+
paid: number;
|
|
67
|
+
type: number;
|
|
68
|
+
collected: boolean;
|
|
87
69
|
desc: string;
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
viewNum: number;
|
|
91
|
-
cursor: string;
|
|
92
|
-
enabled: boolean;
|
|
93
|
-
status: number;
|
|
94
|
-
createTime: number;
|
|
95
|
-
unreadCount: number;
|
|
96
|
-
coverImage: null;
|
|
97
|
-
deeplink: string;
|
|
70
|
+
total_episodes: number;
|
|
71
|
+
create_time: number;
|
|
98
72
|
}, {
|
|
99
73
|
id: string;
|
|
100
74
|
name: string;
|
|
75
|
+
icon: string;
|
|
76
|
+
note_num: number;
|
|
77
|
+
view_num: number;
|
|
78
|
+
paid: number;
|
|
79
|
+
type: number;
|
|
80
|
+
collected: boolean;
|
|
101
81
|
desc: string;
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
viewNum: number;
|
|
105
|
-
cursor: string;
|
|
106
|
-
enabled: boolean;
|
|
107
|
-
status: number;
|
|
108
|
-
createTime: number;
|
|
109
|
-
unreadCount: number;
|
|
110
|
-
coverImage: null;
|
|
111
|
-
deeplink: string;
|
|
82
|
+
total_episodes: number;
|
|
83
|
+
create_time: number;
|
|
112
84
|
}>>;
|
|
113
85
|
groupBind: z.ZodOptional<z.ZodCustom<{
|
|
114
86
|
avatar: string;
|