forked from jasonwwl/wework_message
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
434 lines (376 loc) · 8.37 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
declare module "wework-message" {
export interface WeWorkConfig {
corpid: string;
secret: string;
pk: string;
}
export interface MediaBody {
/**
* 媒体资源的id信息。String类型
*/
sdkfileid: string;
/**
* 资源的md5值,供进行校验。String类型
*/
md5sum: string;
/**
* 资源的文件大小。Uint32类型
*/
filesize: string;
}
export interface VoiceBody extends Omit<MediaBody, "filesize"> {
/**
* 语音消息大小。Uint32类型
*/
voice_size: number;
/**
* 播放长度。Uint32类型
*/
play_length: number;
}
export interface EmotionBody extends Omit<MediaBody, "filesize"> {
/**
* 表情类型,png或者gif.1表示gif 2表示png。Uint32类型
*/
type: 1 | 2;
/**
* 表情图片宽度。Uint32类型
*/
width: number;
/**
* 表情图片高度。Uint32类型
*/
height: number;
/**
* 资源的文件大小。Uint32类型
*/
imagesize: number;
}
export interface VideoBody extends MediaBody {
/**
* 视频播放长度。Uint32类型
*/
play_length: number;
}
export interface FileBody extends MediaBody {
/**
* 文件名称。String类型
*/
filename: string;
/**
* 文件类型后缀。String类型
*/
fileext: string;
}
export interface ChatrecordBody {
/**
* 聊天记录标题。String类型
*/
title: string;
/**
* 消息记录内的消息内容,批量数据
* see: https://open.work.weixin.qq.com/api/doc/90000/90135/91774#%E6%B6%88%E6%81%AF%E6%A0%BC%E5%BC%8F
*/
item: Array<{
type: "text";
msgtime: number;
content: string;
from_chatroom: boolean;
}>;
}
export interface RawChatData {
seq: number;
msgid: string;
publickey_ver: number;
encrypt_random_key: string;
encrypt_chat_msg: string;
}
export interface ChatData {
/**
* 消息id,消息的唯一标识,企业可以使用此字段进行消息去重。String类型
*/
msgid: string;
/**
* 消息动作,目前有send(发送消息)/recall(撤回消息)/switch(切换企业日志)三种类型。String类型
*/
action: "send" | "recall" | "switch";
/**
* 消息发送方id。同一企业内容为userid,非相同企业为external_userid。消息如果是机器人发出,也为external_userid。String类型
*/
from: string;
/**
* 消息接收方列表,可能是多个,同一个企业内容为userid,非相同企业为external_userid。数组,内容为string类型
*/
tolist: string[];
/**
* 群聊消息的群id。如果是单聊则为空。String类型
*/
roomid: string;
/**
* 消息发送时间戳,utc时间,ms单位。
*/
msgtime: number;
/**
* 消息类型(String类型):
* - 文本消息为:text
* - 图片消息为:image
* - 撤回消息为:revoke
* - 同意消息为:agree
* - 不同意消息为:disagree
* - 语音消息为:voice
* - 视频消息为:video
* - 名片消息为:card
* - 位置消息为:location
* - 表情消息为:emotion
* - 文件消息为:file
* - 链接消息为:link
* - 小程序消息为:weapp
* - 会话记录消息为:chatrecord
* - 待办消息为:todo
* - 投票消息为:vote
* - 填表消息为:collect
* - 红包消息为:redpacket
* - 会议邀请消息为:meeting
* - 在线文档消息为:docmsg
* - MarkDown消息为:markdown
* - 图文消息为:news
* - 日程消息为:calendar
* - 混合消息为:mixed
* - 音频存档消息为:meeting_voice_call
* - 互通红包消息为:external_redpacket
*/
msgtype:
| "text"
| "image"
| "revoke"
| "agree"
| "disagree"
| "voice"
| "video"
| "card"
| "location"
| "emotion"
| "file"
| "link"
| "weapp"
| "chatrecord"
| "todo"
| "vote"
| "collect"
| "redpacket"
| "meeting"
| "docmsg"
| "markdown"
| "news"
| "calendar"
| "mixed"
| "meeting_voice_call"
| "external_redpacket";
/**
* 文本消息内容
*/
content?: string;
/**
* 图片消息内容
*/
image?: MediaBody;
/**
* 撤回消息内容
*/
revoke?: {
/**
* 标识撤回的原消息的msgid
*/
pre_msgid: string;
};
/**
* 同意会话聊天内容
*/
agree?: {
/**
* 同意协议者的userid,外部企业默认为external_userid。String类型
*/
userid: string;
/**
* 同意协议的时间,utc时间,ms单位。
*/
agree_time: number;
};
/**
* 不同意会话聊天内容
*/
disagree?: {
/**
* 不同意协议者的userid,外部企业默认为external_userid。String类型
*/
userid: string;
/**
* 不同意协议的时间,utc时间,ms单位。
*/
disagree_time: number;
};
/**
* 语音消息
*/
voice?: VoiceBody;
/**
* 视频消息
*/
video?: VideoBody;
/**
* 名片消息
*/
card?: {
/**
* 名片所有者所在的公司名称。String类型
*/
corpname: string;
/**
* 名片所有者的id,同一公司是userid,不同公司是external_userid。String类型
*/
userid: string;
};
/**
* 位置消息
*/
location?: {
/**
* 经度,单位double
*/
longitude: number;
/**
* 纬度,单位double
*/
latitude: number;
/**
* 地址信息。String类型
*/
address: string;
/**
* 位置信息的title。String类型
*/
title: string;
/**
* 缩放比例。Uint32类型
*/
zoom: number;
};
/**
* 表情消息
*/
emotion?: EmotionBody;
/**
* 文件消息
*/
file?: FileBody;
/**
* 链接消息
*/
link?: {
/**
* 消息标题。String类型
*/
title: string;
/**
* 消息描述。String类型
*/
description: string;
/**
* 链接url地址。String类型
*/
link_url: string;
/**
* 链接图片url。String类型
*/
image_url: string;
};
/**
* 小程序消息
*/
weapp?: {
/**
* 消息标题。String类型
*/
title: string;
/**
* 消息描述。String类型
*/
description: string;
/**
* 用户名称。String类型
*/
username: string;
/**
* 小程序名称。String类型
*/
displayname: string;
};
/**
* 会话记录消息
*/
chatrecord?: ChatrecordBody;
/**
* 待办消息
*/
todo?: {
title: string;
content: string;
};
/**
* 投票消息
*/
vote?: {
votetitle: string;
voteitem: string[];
votetype: 101 | 102;
voteid: string;
};
/**
* 填表消息
*/
collect?: {
room_name: string;
creator: string;
create_time: string;
title: string;
details: Array<{ id: number; ques: string; type: string }>;
};
/**
* 红包消息
*/
redpacket?: {
type: 1 | 2 | 3;
wish: string;
totalcnt: number;
totalamount: number;
};
meeting?: any;
docmsg?: any;
markdown?: any;
calendar?: any;
mixed?: any;
[k: string]: any;
}
export interface DecryptChatData extends ChatData {
/**
* 消息标志位
*/
seq: number;
/**
* 原消息体
*/
raw: RawChatData;
}
export default class WeWork {
constructor(config: WeWorkConfig);
getChatData(seq: number, limit: number, timeout: number): RawChatData[];
getDecryptedChatData(
seq: number,
limit: number,
timeout: number
): DecryptChatData[];
decryptData(msg: ChatData): DecryptChatData;
getMediaData(id: string, savedFilepath: string): string;
}
}
// export = WeWork;