@satorijs/adapter-dingtalk 1.0.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.
Files changed (53) hide show
  1. package/lib/api/alitrip.d.ts +396 -0
  2. package/lib/api/attendance.d.ts +62 -0
  3. package/lib/api/badge.d.ts +232 -0
  4. package/lib/api/blackboard.d.ts +16 -0
  5. package/lib/api/calendar.d.ts +620 -0
  6. package/lib/api/card.d.ts +184 -0
  7. package/lib/api/conference.d.ts +403 -0
  8. package/lib/api/connector.d.ts +78 -0
  9. package/lib/api/contact.d.ts +39 -0
  10. package/lib/api/convFile.d.ts +134 -0
  11. package/lib/api/crm.d.ts +661 -0
  12. package/lib/api/customerService.d.ts +127 -0
  13. package/lib/api/datacenter.d.ts +505 -0
  14. package/lib/api/devicemng.d.ts +160 -0
  15. package/lib/api/diot.d.ts +12 -0
  16. package/lib/api/doc.d.ts +140 -0
  17. package/lib/api/drive.d.ts +87 -0
  18. package/lib/api/edu.d.ts +22 -0
  19. package/lib/api/esign.d.ts +33 -0
  20. package/lib/api/exclusive.d.ts +303 -0
  21. package/lib/api/h3yun.d.ts +437 -0
  22. package/lib/api/hrm.d.ts +214 -0
  23. package/lib/api/im.d.ts +772 -0
  24. package/lib/api/industry.d.ts +117 -0
  25. package/lib/api/jzcrm.d.ts +254 -0
  26. package/lib/api/link.d.ts +72 -0
  27. package/lib/api/live.d.ts +131 -0
  28. package/lib/api/microApp.d.ts +239 -0
  29. package/lib/api/oapi.d.ts +3361 -0
  30. package/lib/api/oauth2.d.ts +114 -0
  31. package/lib/api/pedia.d.ts +185 -0
  32. package/lib/api/project.d.ts +1118 -0
  33. package/lib/api/resident.d.ts +106 -0
  34. package/lib/api/robot.d.ts +255 -0
  35. package/lib/api/rooms.d.ts +255 -0
  36. package/lib/api/serviceGroup.d.ts +175 -0
  37. package/lib/api/storage.d.ts +1240 -0
  38. package/lib/api/swform.d.ts +70 -0
  39. package/lib/api/todo.d.ts +168 -0
  40. package/lib/api/wiki.d.ts +194 -0
  41. package/lib/api/workbench.d.ts +45 -0
  42. package/lib/api/yida.d.ts +1837 -0
  43. package/lib/bot.d.ts +30 -0
  44. package/lib/http.d.ts +7 -0
  45. package/lib/index.d.ts +7 -0
  46. package/lib/index.js +1814 -0
  47. package/lib/index.js.map +7 -0
  48. package/lib/internal.d.ts +7 -0
  49. package/lib/message.d.ts +17 -0
  50. package/lib/types/index.d.ts +133 -0
  51. package/lib/utils.d.ts +4 -0
  52. package/lib/ws.d.ts +12 -0
  53. package/package.json +31 -0
@@ -0,0 +1,127 @@
1
+ export interface ExecuteActivityParams {
2
+ /** 会员来源,取diamond配置的值。 */
3
+ sourceId: string;
4
+ /** 会员ID。 */
5
+ foreignId: string;
6
+ /** 会员名称。 */
7
+ foreignName: string;
8
+ /** 动作编码。 */
9
+ activityCode: string;
10
+ /** 实例ID。 */
11
+ openInstanceId?: string;
12
+ /** 智能客服产品类型: */
13
+ productionType?: number;
14
+ /** 工单表单。 */
15
+ properties?: object[];
16
+ }
17
+ export interface ExecuteActivityResponse {
18
+ taskId?: string;
19
+ }
20
+ export interface PageListActionQuery {
21
+ /** 实例ID。 */
22
+ openInstanceId?: string;
23
+ /** 智能客服产品类型: */
24
+ productionType?: number;
25
+ /** 查询数据的起始位置,0表示从头开始。 */
26
+ nextToken: string;
27
+ /** 查询单页查询的最大条目数,最大值为100。 */
28
+ maxResults: number;
29
+ }
30
+ export interface PageListActionResponse {
31
+ nextCursor?: number;
32
+ total?: number;
33
+ list?: {
34
+ operatorId?: string;
35
+ operator?: string;
36
+ operatorRole?: string;
37
+ actionCode?: string;
38
+ actionContent?: number;
39
+ }[];
40
+ }
41
+ export interface PageListTicketQuery {
42
+ /** 实例ID。 */
43
+ openInstanceId?: string;
44
+ /** 智能客服产品类型: */
45
+ productionType?: number;
46
+ /** 工单模板ID。 */
47
+ templateId: string;
48
+ /** 工单ID。 */
49
+ ticketId?: string;
50
+ /** 会员来源,取diamond配置的值。 */
51
+ sourceId?: string;
52
+ /** 第三方用户userid。 */
53
+ foreignId?: string;
54
+ /** 工单状态。 */
55
+ ticketStatus?: string;
56
+ /** 开始时间,时间戳,单位毫秒。 */
57
+ startTime?: number;
58
+ /** 结束时间,时间戳,单位毫秒。 */
59
+ endTime?: number;
60
+ /** 查询数据的起始位置,0表示从头开始。 */
61
+ nextToken: string;
62
+ /** 查询单页查询的最大条目数,最大值为100。 */
63
+ maxResults: number;
64
+ }
65
+ export interface PageListTicketResponse {
66
+ nextCursor?: number;
67
+ total?: number;
68
+ list?: {
69
+ foreignId?: string;
70
+ sourceId?: string;
71
+ foreignName?: string;
72
+ templateId?: string;
73
+ title?: string;
74
+ ticketId?: string;
75
+ ticketStatus?: string;
76
+ openInstanceId?: string;
77
+ productionType?: number;
78
+ gmtCreate?: string;
79
+ gmtModified?: string;
80
+ bizDataMap?: number;
81
+ }[];
82
+ }
83
+ export interface CreateTicketParams {
84
+ /** 会员来源,取diamond配置的值。 */
85
+ sourceId: string;
86
+ /** 第三方会员ID。 */
87
+ foreignId: string;
88
+ /** 第三方会员名称。 */
89
+ foreignName: string;
90
+ /** 实例ID。 */
91
+ openInstanceId?: string;
92
+ /** 智能客服产品类型: */
93
+ productionType?: number;
94
+ /** 自助单ID,钉钉智能客服自助单配置里的值。 */
95
+ templateId: string;
96
+ /** 工单标题。 */
97
+ title: string;
98
+ /** 表单信息。 */
99
+ properties?: object[];
100
+ }
101
+ export interface CreateTicketResponse {
102
+ ticketId?: string;
103
+ }
104
+ declare module '../internal' {
105
+ interface Internal {
106
+ /**
107
+ * 执行工单活动
108
+ * @see https://developers.dingtalk.com/document/isvapp/intelligent-customer-service-execute-work-order-activities
109
+ */
110
+ executeActivity(ticketId: string, params: ExecuteActivityParams): Promise<ExecuteActivityResponse>;
111
+ /**
112
+ * 查询动作记录
113
+ * @see https://developers.dingtalk.com/document/isvapp/intelligent-customer-service-query-action-records
114
+ */
115
+ pageListAction(ticketId: string, query: PageListActionQuery): Promise<PageListActionResponse>;
116
+ /**
117
+ * 分页查询工单
118
+ * @see https://developers.dingtalk.com/document/isvapp/intelligent-customer-service-paging-query-work-order
119
+ */
120
+ pageListTicket(query: PageListTicketQuery): Promise<PageListTicketResponse>;
121
+ /**
122
+ * 创建自助单
123
+ * @see https://developers.dingtalk.com/document/isvapp/smart-customer-service-create-a-self-service-order
124
+ */
125
+ createTicket(params: CreateTicketParams): Promise<CreateTicketResponse>;
126
+ }
127
+ }
@@ -0,0 +1,505 @@
1
+ export interface QueryGeneralDataServiceQuery {
2
+ /** 开始日期,例如:20220901。 */
3
+ startDate: string;
4
+ /** 服务编码,在创建数据服务后获取。 */
5
+ serviceId: string;
6
+ /** 结束日期,例如:20220901。 */
7
+ endDate: string;
8
+ /** 部门ID,非部门维度接口不需要传。 */
9
+ deptId?: string;
10
+ /** 员工userId。 */
11
+ userId: string;
12
+ /** 每页大小,不填默认为10,最大为50。 */
13
+ pageSize?: number;
14
+ /** 分页页码,从1开始,不填默认为1。 */
15
+ pageNumber?: number;
16
+ }
17
+ export interface QueryGeneralDataServiceResponse {
18
+ dataList?: object[];
19
+ metaList?: {
20
+ fieldName: string;
21
+ fieldDesc: string;
22
+ fieldType: string;
23
+ fieldId: string;
24
+ }[];
25
+ }
26
+ export interface QueryOnlineUserStatisticalDataQuery {
27
+ /** 查询时间,日期格式为yyyyMMdd。 */
28
+ statDate: string;
29
+ }
30
+ export interface QueryOnlineUserStatisticalDataResponse {
31
+ dataList?: object[];
32
+ metaList?: {
33
+ kpiId: string;
34
+ kpiName: string;
35
+ unit: string;
36
+ kpiCaliber: string;
37
+ period: string;
38
+ }[];
39
+ }
40
+ export interface QueryActiveUserStatisticalDataQuery {
41
+ /** 查询时间,日期格式为yyyyMMdd。 */
42
+ statDate: string;
43
+ }
44
+ export interface QueryActiveUserStatisticalDataResponse {
45
+ dataList?: object[];
46
+ metaList?: {
47
+ kpiId: string;
48
+ kpiName: string;
49
+ unit: string;
50
+ kpiCaliber: string;
51
+ period: string;
52
+ }[];
53
+ }
54
+ export interface QueryEmployeeTypeStatisticalDataQuery {
55
+ /** 查询时间,日期格式为yyyyMMdd。 */
56
+ statDate: string;
57
+ }
58
+ export interface QueryEmployeeTypeStatisticalDataResponse {
59
+ dataList?: object[];
60
+ metaList?: {
61
+ kpiId: string;
62
+ kpiName: string;
63
+ unit: string;
64
+ kpiCaliber: string;
65
+ period: string;
66
+ }[];
67
+ }
68
+ export interface QueryCircleStatisticalDataQuery {
69
+ /** 查询时间,日期格式为yyyyMMdd。 */
70
+ statDate: string;
71
+ }
72
+ export interface QueryCircleStatisticalDataResponse {
73
+ dataList?: object[];
74
+ metaList?: {
75
+ kpiId: string;
76
+ kpiName: string;
77
+ unit: string;
78
+ kpiCaliber: string;
79
+ period: string;
80
+ }[];
81
+ }
82
+ export interface QuerySingleMessageStatisticalDataQuery {
83
+ /** 查询时间,日期格式为yyyyMMdd。 */
84
+ statDate: string;
85
+ }
86
+ export interface QuerySingleMessageStatisticalDataResponse {
87
+ dataList?: object[];
88
+ metaList?: {
89
+ kpiId: string;
90
+ kpiName: string;
91
+ unit: string;
92
+ kpiCaliber: string;
93
+ period: string;
94
+ }[];
95
+ }
96
+ export interface QueryGroupMessageStatisticalDataQuery {
97
+ /** 查询时间,日期格式为yyyyMMdd。 */
98
+ statDate: string;
99
+ }
100
+ export interface QueryGroupMessageStatisticalDataResponse {
101
+ dataList?: object[];
102
+ metaList?: {
103
+ kpiId: string;
104
+ kpiName: string;
105
+ unit: string;
106
+ kpiCaliber: string;
107
+ period: string;
108
+ }[];
109
+ }
110
+ export interface QueryDingSendStatisticalDataQuery {
111
+ /** 查询时间,日期格式为yyyyMMdd。 */
112
+ statDate: string;
113
+ }
114
+ export interface QueryDingSendStatisticalDataResponse {
115
+ dataList?: object[];
116
+ metaList?: {
117
+ kpiId: string;
118
+ kpiName: string;
119
+ unit: string;
120
+ kpiCaliber: string;
121
+ period: string;
122
+ }[];
123
+ }
124
+ export interface QueryDingReciveStatisticalDataQuery {
125
+ /** 查询时间,日期格式为yyyyMMdd。 */
126
+ statDate: string;
127
+ }
128
+ export interface QueryDingReciveStatisticalDataResponse {
129
+ dataList?: object[];
130
+ metaList?: {
131
+ kpiId: string;
132
+ kpiName: string;
133
+ unit: string;
134
+ kpiCaliber: string;
135
+ period: string;
136
+ }[];
137
+ }
138
+ export interface QueryVedioMeetingStatisticalDataQuery {
139
+ /** 查询时间,日期格式为yyyyMMdd。 */
140
+ statDate: string;
141
+ }
142
+ export interface QueryVedioMeetingStatisticalDataResponse {
143
+ dataList?: object[];
144
+ metaList?: {
145
+ kpiId: string;
146
+ kpiName: string;
147
+ unit: string;
148
+ kpiCaliber: string;
149
+ period: string;
150
+ }[];
151
+ }
152
+ export interface QueryTelMeetingStatisticalDataQuery {
153
+ /** 查询时间,日期格式为yyyyMMdd。 */
154
+ statDate: string;
155
+ }
156
+ export interface QueryTelMeetingStatisticalDataResponse {
157
+ dataList?: object[];
158
+ metaList?: {
159
+ kpiId: string;
160
+ kpiName: string;
161
+ unit: string;
162
+ kpiCaliber: string;
163
+ period: string;
164
+ }[];
165
+ }
166
+ export interface QueryGroupLiveStatisticalDataQuery {
167
+ /** 查询时间,日期格式为yyyyMMdd。 */
168
+ statDate: string;
169
+ }
170
+ export interface QueryGroupLiveStatisticalDataResponse {
171
+ dataList?: object[];
172
+ metaList?: {
173
+ kpiId: string;
174
+ kpiName: string;
175
+ unit: string;
176
+ kpiCaliber: string;
177
+ period: string;
178
+ }[];
179
+ }
180
+ export interface QueryRedEnvelopeSendStatisticalDataQuery {
181
+ /** 查询时间,日期格式为yyyyMMdd。 */
182
+ statDate: string;
183
+ }
184
+ export interface QueryRedEnvelopeSendStatisticalDataResponse {
185
+ dataList?: object[];
186
+ metaList?: {
187
+ kpiId: string;
188
+ kpiName: string;
189
+ unit: string;
190
+ kpiCaliber: string;
191
+ period: string;
192
+ }[];
193
+ }
194
+ export interface QueryRedEnvelopeReciveStatisticalDataQuery {
195
+ /** 查询时间,日期格式为yyyyMMdd。 */
196
+ statDate: string;
197
+ }
198
+ export interface QueryRedEnvelopeReciveStatisticalDataResponse {
199
+ dataList?: object[];
200
+ metaList?: {
201
+ kpiId: string;
202
+ kpiName: string;
203
+ unit: string;
204
+ kpiCaliber: string;
205
+ period: string;
206
+ }[];
207
+ }
208
+ export interface QueryBlackboardStatisticalDataQuery {
209
+ /** 查询时间,日期格式为yyyyMMdd。 */
210
+ statDate: string;
211
+ }
212
+ export interface QueryBlackboardStatisticalDataResponse {
213
+ dataList?: object[];
214
+ metaList?: {
215
+ kpiId: string;
216
+ kpiName: string;
217
+ unit: string;
218
+ kpiCaliber: string;
219
+ period: string;
220
+ }[];
221
+ }
222
+ export interface QueryTodoStatisticalDataQuery {
223
+ /** 查询时间,日期格式为yyyyMMdd。 */
224
+ statDate: string;
225
+ }
226
+ export interface QueryTodoStatisticalDataResponse {
227
+ dataList?: object[];
228
+ metaList?: {
229
+ kpiId: string;
230
+ kpiName: string;
231
+ unit: string;
232
+ kpiCaliber: string;
233
+ period: string;
234
+ }[];
235
+ }
236
+ export interface QueryHealthStatisticalDataQuery {
237
+ /** 查询时间,日期格式为yyyyMMdd。 */
238
+ statDate: string;
239
+ }
240
+ export interface QueryHealthStatisticalDataResponse {
241
+ dataList?: object[];
242
+ metaList?: {
243
+ kpiId: string;
244
+ kpiName: string;
245
+ unit: string;
246
+ kpiCaliber: string;
247
+ period: string;
248
+ }[];
249
+ }
250
+ export interface QueryDocumentStatisticalDataQuery {
251
+ /** 查询时间,日期格式为yyyyMMdd。 */
252
+ statDate: string;
253
+ }
254
+ export interface QueryDocumentStatisticalDataResponse {
255
+ dataList?: object[];
256
+ metaList?: {
257
+ kpiId: string;
258
+ kpiName: string;
259
+ unit: string;
260
+ kpiCaliber: string;
261
+ period: string;
262
+ }[];
263
+ }
264
+ export interface QueryCheckinStatisticalDataQuery {
265
+ /** 查询时间,日期格式为yyyyMMdd。 */
266
+ statDate: string;
267
+ }
268
+ export interface QueryCheckinStatisticalDataResponse {
269
+ dataList?: object[];
270
+ metaList?: {
271
+ kpiId: string;
272
+ kpiName: string;
273
+ unit: string;
274
+ kpiCaliber: string;
275
+ period: string;
276
+ }[];
277
+ }
278
+ export interface QueryApprovalStatisticalDataQuery {
279
+ /** 查询时间,日期格式为yyyyMMdd。 */
280
+ statDate: string;
281
+ }
282
+ export interface QueryApprovalStatisticalDataResponse {
283
+ dataList?: object[];
284
+ metaList?: {
285
+ kpiId: string;
286
+ kpiName: string;
287
+ unit: string;
288
+ kpiCaliber: string;
289
+ period: string;
290
+ }[];
291
+ }
292
+ export interface QueryReportStatisticalDataQuery {
293
+ /** 查询时间,日期格式为yyyyMMdd。 */
294
+ statDate: string;
295
+ }
296
+ export interface QueryReportStatisticalDataResponse {
297
+ dataList?: object[];
298
+ metaList?: {
299
+ kpiId: string;
300
+ kpiName: string;
301
+ unit: string;
302
+ kpiCaliber: string;
303
+ period: string;
304
+ }[];
305
+ }
306
+ export interface QueryAttendanceStatisticalDataQuery {
307
+ /** 查询时间,日期格式为yyyyMMdd。 */
308
+ statDate: string;
309
+ }
310
+ export interface QueryAttendanceStatisticalDataResponse {
311
+ dataList?: object[];
312
+ metaList?: {
313
+ kpiId: string;
314
+ kpiName: string;
315
+ unit: string;
316
+ kpiCaliber: string;
317
+ period: string;
318
+ }[];
319
+ }
320
+ export interface QueryDriveStatisticalDataQuery {
321
+ /** 查询时间,日期格式为yyyyMMdd。 */
322
+ statDate: string;
323
+ }
324
+ export interface QueryDriveStatisticalDataResponse {
325
+ dataList?: object[];
326
+ metaList?: {
327
+ kpiId: string;
328
+ kpiName: string;
329
+ unit: string;
330
+ kpiCaliber: string;
331
+ period: string;
332
+ }[];
333
+ }
334
+ export interface QueryMailStatisticalDataQuery {
335
+ /** 查询时间,日期格式为yyyyMMdd。 */
336
+ statDate: string;
337
+ }
338
+ export interface QueryMailStatisticalDataResponse {
339
+ dataList?: object[];
340
+ metaList?: {
341
+ kpiId: string;
342
+ kpiName: string;
343
+ unit: string;
344
+ kpiCaliber: string;
345
+ period: string;
346
+ }[];
347
+ }
348
+ export interface QueryCalendarStatisticalDataQuery {
349
+ /** 查询时间,日期格式为yyyyMMdd。 */
350
+ statDate: string;
351
+ }
352
+ export interface QueryCalendarStatisticalDataResponse {
353
+ dataList?: object[];
354
+ metaList?: {
355
+ kpiId: string;
356
+ kpiName: string;
357
+ unit: string;
358
+ kpiCaliber: string;
359
+ period: string;
360
+ }[];
361
+ }
362
+ export interface QueryDigitalDistrictOrgInfoParams {
363
+ /** 查询时间,日期格式为yyyyMMdd。 */
364
+ statDates: string[];
365
+ /** 数字区县组织corpId列表。 */
366
+ corpIds: string[];
367
+ }
368
+ export interface QueryDigitalDistrictOrgInfoResponse {
369
+ arguments?: string[];
370
+ result?: string;
371
+ }
372
+ declare module '../internal' {
373
+ interface Internal {
374
+ /**
375
+ * 数据资产平台数据服务接口
376
+ * @see https://developers.dingtalk.com/document/orgapp-server/data-assets-platform-data-services-apis
377
+ */
378
+ queryGeneralDataService(query: QueryGeneralDataServiceQuery): Promise<QueryGeneralDataServiceResponse>;
379
+ /**
380
+ * 获取企业用户在线统计数据
381
+ * @see https://developers.dingtalk.com/document/orgapp/retrieve-online-statistics-of-enterprise-users
382
+ */
383
+ queryOnlineUserStatisticalData(query: QueryOnlineUserStatisticalDataQuery): Promise<QueryOnlineUserStatisticalDataResponse>;
384
+ /**
385
+ * 获取企业用户激活状态统计数据
386
+ * @see https://developers.dingtalk.com/document/orgapp/obtains-statistics-on-user-activation-status
387
+ */
388
+ queryActiveUserStatisticalData(query: QueryActiveUserStatisticalDataQuery): Promise<QueryActiveUserStatisticalDataResponse>;
389
+ /**
390
+ * 获取企业员工类型统计数据
391
+ * @see https://developers.dingtalk.com/document/orgapp/obtains-statistics-on-employee-types
392
+ */
393
+ queryEmployeeTypeStatisticalData(query: QueryEmployeeTypeStatisticalDataQuery): Promise<QueryEmployeeTypeStatisticalDataResponse>;
394
+ /**
395
+ * 获取企业全员圈统计数据
396
+ * @see https://developers.dingtalk.com/document/orgapp/obtains-the-statistical-data-of-all-employees-of-an-enterprise
397
+ */
398
+ queryCircleStatisticalData(query: QueryCircleStatisticalDataQuery): Promise<QueryCircleStatisticalDataResponse>;
399
+ /**
400
+ * 获取企业单聊统计数据
401
+ * @see https://developers.dingtalk.com/document/orgapp/queries-the-statistics-on-one-time-enterprise-chats
402
+ */
403
+ querySingleMessageStatisticalData(query: QuerySingleMessageStatisticalDataQuery): Promise<QuerySingleMessageStatisticalDataResponse>;
404
+ /**
405
+ * 获取企业群聊统计数据
406
+ * @see https://developers.dingtalk.com/document/orgapp/obtain-enterprise-group-chat-statistics
407
+ */
408
+ queryGroupMessageStatisticalData(query: QueryGroupMessageStatisticalDataQuery): Promise<QueryGroupMessageStatisticalDataResponse>;
409
+ /**
410
+ * 获取企业DING发送统计数据
411
+ * @see https://developers.dingtalk.com/document/orgapp/obtain-sending-statistics-of-an-enterprise-ding
412
+ */
413
+ queryDingSendStatisticalData(query: QueryDingSendStatisticalDataQuery): Promise<QueryDingSendStatisticalDataResponse>;
414
+ /**
415
+ * 获取企业DING接收及评论统计数据
416
+ * @see https://developers.dingtalk.com/document/orgapp/obtain-statistics-on-receiving-and-comments-of-enterprise-ding
417
+ */
418
+ queryDingReciveStatisticalData(query: QueryDingReciveStatisticalDataQuery): Promise<QueryDingReciveStatisticalDataResponse>;
419
+ /**
420
+ * 获取企业视频会议统计数据
421
+ * @see https://developers.dingtalk.com/document/orgapp/get-enterprise-video-conference-statistics
422
+ */
423
+ queryVedioMeetingStatisticalData(query: QueryVedioMeetingStatisticalDataQuery): Promise<QueryVedioMeetingStatisticalDataResponse>;
424
+ /**
425
+ * 获取企业电话会议统计数据
426
+ * @see https://developers.dingtalk.com/document/orgapp/get-enterprise-teleconference-statistics
427
+ */
428
+ queryTelMeetingStatisticalData(query: QueryTelMeetingStatisticalDataQuery): Promise<QueryTelMeetingStatisticalDataResponse>;
429
+ /**
430
+ * 获取企业群直播统计数据
431
+ * @see https://developers.dingtalk.com/document/orgapp/obtains-the-live-stream-statistics-for-an-enterprise-group
432
+ */
433
+ queryGroupLiveStatisticalData(query: QueryGroupLiveStatisticalDataQuery): Promise<QueryGroupLiveStatisticalDataResponse>;
434
+ /**
435
+ * 获取企业发送红包统计数据
436
+ * @see https://developers.dingtalk.com/document/orgapp/obtains-the-statistics-on-red-packets-issued-by-enterprises
437
+ */
438
+ queryRedEnvelopeSendStatisticalData(query: QueryRedEnvelopeSendStatisticalDataQuery): Promise<QueryRedEnvelopeSendStatisticalDataResponse>;
439
+ /**
440
+ * 获取企业接收红包统计数据
441
+ * @see https://developers.dingtalk.com/document/orgapp/queries-the-red-envelope-receiving-statistics-of-an-enterprise
442
+ */
443
+ queryRedEnvelopeReciveStatisticalData(query: QueryRedEnvelopeReciveStatisticalDataQuery): Promise<QueryRedEnvelopeReciveStatisticalDataResponse>;
444
+ /**
445
+ * 获取企业公告统计数据
446
+ * @see https://developers.dingtalk.com/document/orgapp/queries-corporate-announcement-statistics
447
+ */
448
+ queryBlackboardStatisticalData(query: QueryBlackboardStatisticalDataQuery): Promise<QueryBlackboardStatisticalDataResponse>;
449
+ /**
450
+ * 获取企业待办统计数据
451
+ * @see https://developers.dingtalk.com/document/orgapp/obtains-the-to-do-statistics-of-an-enterprise
452
+ */
453
+ queryTodoStatisticalData(query: QueryTodoStatisticalDataQuery): Promise<QueryTodoStatisticalDataResponse>;
454
+ /**
455
+ * 获取企业钉钉运动统计数据
456
+ * @see https://developers.dingtalk.com/document/orgapp/queries-dingtalk-movement-statistics
457
+ */
458
+ queryHealthStatisticalData(query: QueryHealthStatisticalDataQuery): Promise<QueryHealthStatisticalDataResponse>;
459
+ /**
460
+ * 获取企业文档统计数据
461
+ * @see https://developers.dingtalk.com/document/orgapp/get-enterprise-document-statistics
462
+ */
463
+ queryDocumentStatisticalData(query: QueryDocumentStatisticalDataQuery): Promise<QueryDocumentStatisticalDataResponse>;
464
+ /**
465
+ * 获取企业签到统计数据
466
+ * @see https://developers.dingtalk.com/document/orgapp/queries-enterprise-check-in-statistics
467
+ */
468
+ queryCheckinStatisticalData(query: QueryCheckinStatisticalDataQuery): Promise<QueryCheckinStatisticalDataResponse>;
469
+ /**
470
+ * 获取企业审批统计数据
471
+ * @see https://developers.dingtalk.com/document/orgapp/obtains-enterprise-approval-statistics
472
+ */
473
+ queryApprovalStatisticalData(query: QueryApprovalStatisticalDataQuery): Promise<QueryApprovalStatisticalDataResponse>;
474
+ /**
475
+ * 获取企业日志统计数据
476
+ * @see https://developers.dingtalk.com/document/orgapp/obtain-enterprise-log-statistics
477
+ */
478
+ queryReportStatisticalData(query: QueryReportStatisticalDataQuery): Promise<QueryReportStatisticalDataResponse>;
479
+ /**
480
+ * 获取企业考勤统计数据
481
+ * @see https://developers.dingtalk.com/document/orgapp/queries-enterprise-attendance-statistics
482
+ */
483
+ queryAttendanceStatisticalData(query: QueryAttendanceStatisticalDataQuery): Promise<QueryAttendanceStatisticalDataResponse>;
484
+ /**
485
+ * 获取企业钉盘统计数据
486
+ * @see https://developers.dingtalk.com/document/orgapp/obtains-the-statistics-on-enterprise-dingtalk-trays
487
+ */
488
+ queryDriveStatisticalData(query: QueryDriveStatisticalDataQuery): Promise<QueryDriveStatisticalDataResponse>;
489
+ /**
490
+ * 获取企业邮箱统计数据
491
+ * @see https://developers.dingtalk.com/document/orgapp/queries-enterprise-email-statistics
492
+ */
493
+ queryMailStatisticalData(query: QueryMailStatisticalDataQuery): Promise<QueryMailStatisticalDataResponse>;
494
+ /**
495
+ * 获取企业日程统计数据
496
+ * @see https://developers.dingtalk.com/document/orgapp/queries-enterprise-schedule-statistics
497
+ */
498
+ queryCalendarStatisticalData(query: QueryCalendarStatisticalDataQuery): Promise<QueryCalendarStatisticalDataResponse>;
499
+ /**
500
+ * 获取数字区县组织信息
501
+ * @see https://developers.dingtalk.com/document/orgapp/querydigitaldistrictorginfo-api-reference
502
+ */
503
+ queryDigitalDistrictOrgInfo(params: QueryDigitalDistrictOrgInfoParams): Promise<QueryDigitalDistrictOrgInfoResponse>;
504
+ }
505
+ }