dingtalk-mcp 1.1.7 → 1.1.8
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.
|
@@ -105,6 +105,11 @@ tools:
|
|
|
105
105
|
required: true
|
|
106
106
|
position: path
|
|
107
107
|
description: 要修改的日程ID
|
|
108
|
+
- name: id
|
|
109
|
+
type: string
|
|
110
|
+
required: true
|
|
111
|
+
position: body
|
|
112
|
+
description: 要修改的日程ID,和eventId参数的值一样。
|
|
108
113
|
- name: summary
|
|
109
114
|
type: string
|
|
110
115
|
required: false
|
|
@@ -155,7 +160,7 @@ tools:
|
|
|
155
160
|
description: 删除指定的日程
|
|
156
161
|
requestTemplate:
|
|
157
162
|
method: DELETE
|
|
158
|
-
url: https://api.dingtalk.com/v1.0/calendar/users/{unionId}/calendars/{calendarId}/events/{eventId}
|
|
163
|
+
url: https://api.dingtalk.com/v1.0/calendar/users/{unionId}/calendars/{calendarId}/events/{eventId}?pushNotification=Boolean
|
|
159
164
|
args:
|
|
160
165
|
- name: unionId
|
|
161
166
|
type: string
|
|
@@ -182,7 +187,7 @@ tools:
|
|
|
182
187
|
description: 查询单个日程的详细信息
|
|
183
188
|
requestTemplate:
|
|
184
189
|
method: GET
|
|
185
|
-
url: https://api.dingtalk.com/v1.0/calendar/users/{unionId}/calendars/{calendarId}/events/{eventId}
|
|
190
|
+
url: https://api.dingtalk.com/v1.0/calendar/users/{unionId}/calendars/{calendarId}/events/{eventId}?maxAttendees=Integer
|
|
186
191
|
args:
|
|
187
192
|
- name: unionId
|
|
188
193
|
type: string
|
|
@@ -284,7 +289,7 @@ tools:
|
|
|
284
289
|
description: 获取日程参与者列表
|
|
285
290
|
requestTemplate:
|
|
286
291
|
method: GET
|
|
287
|
-
url: https://api.dingtalk.com/v1.0/calendar/users/{unionId}/calendars/{calendarId}/events/{eventId}/attendees
|
|
292
|
+
url: https://api.dingtalk.com/v1.0/calendar/users/{unionId}/calendars/{calendarId}/events/{eventId}/attendees?maxResults=Integer&nextToken=String
|
|
288
293
|
args:
|
|
289
294
|
- name: unionId
|
|
290
295
|
type: string
|
|
@@ -316,10 +321,10 @@ tools:
|
|
|
316
321
|
description: 查询日程视图,按时间范围获取日程列表
|
|
317
322
|
requestTemplate:
|
|
318
323
|
method: GET
|
|
319
|
-
url: https://api.dingtalk.com/v1.0/calendar/users/{unionId}/calendars/{calendarId}/eventsview
|
|
324
|
+
url: https://api.dingtalk.com/v1.0/calendar/users/{unionId}/calendars/{calendarId}/eventsview?timeMin=String&timeMax=String&maxAttendees=Integer&maxResults=Integer&nextToken=String
|
|
320
325
|
args:
|
|
321
326
|
- name: unionId
|
|
322
|
-
type:
|
|
327
|
+
type: stringString
|
|
323
328
|
required: true
|
|
324
329
|
position: path
|
|
325
330
|
description: 用户的unionId
|
|
@@ -332,12 +337,12 @@ tools:
|
|
|
332
337
|
type: string
|
|
333
338
|
required: true
|
|
334
339
|
position: query
|
|
335
|
-
description:
|
|
340
|
+
description: 查询的起始时间,格式为ISO-8601的date-time格式。
|
|
336
341
|
- name: timeMax
|
|
337
342
|
type: string
|
|
338
343
|
required: true
|
|
339
344
|
position: query
|
|
340
|
-
description:
|
|
345
|
+
description: 查询的结束时间,格式为ISO-8601的date-time格式。
|
|
341
346
|
- name: maxAttendees
|
|
342
347
|
type: number
|
|
343
348
|
required: false
|
|
@@ -352,4 +357,4 @@ tools:
|
|
|
352
357
|
type: string
|
|
353
358
|
required: false
|
|
354
359
|
position: query
|
|
355
|
-
description: 分页标记
|
|
360
|
+
description: 分页标记
|