Skip to content

Commit

Permalink
Merge pull request #70 from juzibot/feat/post-new-payload
Browse files Browse the repository at this point in the history
Feat/post new payload
hcfw007 authored Dec 11, 2024

Verified

This commit was signed with the committer’s verified signature.
DanielSchiavini Daniel Schiavini
2 parents d91ed58 + ecc7f9e commit 6f2d8f2
Showing 4 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@juzi/wechaty-puppet",
"version": "1.0.98",
"version": "1.0.99",
"description": "Abstract Puppet for Wechaty",
"type": "module",
"exports": {
2 changes: 2 additions & 0 deletions src/mods/types.ts
Original file line number Diff line number Diff line change
@@ -19,6 +19,7 @@ import {
BroadcastStatus,
BroadcastTargetStatus,
PostType,
PostStatus,
TapType,
TagType,
TextContentType,
@@ -81,6 +82,7 @@ export {
BroadcastStatus,
BroadcastTargetStatus,
CallStatus,
PostStatus,
type FriendshipAddOptions,
type MessageSendTextOptions,
type RoomPermission,
2 changes: 2 additions & 0 deletions src/schemas/mod.ts
Original file line number Diff line number Diff line change
@@ -48,6 +48,7 @@ import {
import {
type PostPayload,
PostType,
PostStatus,
isPostPayloadClient,
isPostPayloadServer,
type PostQueryFilter,
@@ -171,6 +172,7 @@ export {
PaginationResponse,
RoomMemberJoinSceneType,
PostType,
PostStatus,
PUPPET_EVENT_DICT,
sayablePayloads,
sayableTypes,
10 changes: 10 additions & 0 deletions src/schemas/post.ts
Original file line number Diff line number Diff line change
@@ -18,6 +18,11 @@ enum PostType {
GoodsCard = 6, // puppet-mini 商品消息
}

enum PostStatus {
Normal = 0,
Hidden = 1,
}

/**
* Huan(202201): Error: referenced directly or indirectly in its own type annotation. ts(2502) #180
* @link https://github.com/wechaty/puppet/issues/180
@@ -76,6 +81,9 @@ interface PostPayloadServer extends PostPayloadBase {
contactId: string
timestamp: number

status?: PostStatus // for moment only?
liked?: boolean // bot liked this post or not

counter: {
children?: number
descendant?: number
@@ -126,12 +134,14 @@ interface PostQueryFilter {
parentId? : string // two type of `undefined`: see above comments
rootId? : string // two type of `undefined`: see above comments
type? : PostType
status? : PostStatus
}

export {
isPostPayloadClient,
isPostPayloadServer,
PostType,
PostStatus,
type PostQueryFilter,
type SayablePayloadPost,
type PostPayload,

0 comments on commit 6f2d8f2

Please sign in to comment.