@tencentcloud/tmeet 1.0.8 → 1.0.9

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/README.md CHANGED
@@ -269,6 +269,7 @@ tmeet meeting create --subject <主题> --start <开始时间> --end <结束时
269
269
  | `--until-type` | int | — | `0` | 周期结束类型(`--meeting-type=1` 时生效):`0`-按日期结束重复,`1`-按次数结束重复 |
270
270
  | `--until-count` | int | — | `7` | 限定会议次数(`--meeting-type=1` 时生效):每天/每个工作日/每周最大 500,每两周/每月最大 50 |
271
271
  | `--until-date` | string | — | — | 周期结束日期(`--meeting-type=1` 时生效),ISO 8601,如 `2026-03-12T15:00+08:00` |
272
+ | `--invitees` | strings | — | — | 邀请成员的 openid 列表,逗号分隔或重复传参(最多 100 人,例如 `--invitees open_id1,open_id2`) |
272
273
 
273
274
  **示例:**
274
275
 
@@ -290,6 +291,13 @@ tmeet meeting create \
290
291
  --recurring-type 2 \
291
292
  --until-type 1 \
292
293
  --until-count 10
294
+
295
+ # 创建会议并邀请成员
296
+ tmeet meeting create \
297
+ --subject "需求评审" \
298
+ --start "2026-04-10T14:00+08:00" \
299
+ --end "2026-04-10T15:00+08:00" \
300
+ --invitees "open_id1,open_id2,open_id3"
293
301
  ```
294
302
 
295
303
  ---
@@ -340,6 +348,8 @@ tmeet meeting update --meeting-id <会议ID> [选项]
340
348
  | `--until-type` | int | — | `0` | 周期结束类型(`--meeting-type=1` 时生效):`0`-按日期结束重复,`1`-按次数结束重复 |
341
349
  | `--until-count` | int | — | `7` | 限定会议次数(`--meeting-type=1` 时生效):每天/每个工作日/每周最大 500,每两周/每月最大 50 |
342
350
  | `--until-date` | string | — | — | 周期结束日期(`--meeting-type=1` 时生效),ISO 8601,如 `2026-03-12T15:00+08:00` |
351
+ | `--invitees` | strings | — | — | 待变更的邀请成员 openid 列表,逗号分隔或重复传参;与 `--invitees-type` 配合使用 |
352
+ | `--invitees-type` | string | — | — | 邀请变更策略:`replace`-全量替换邀请列表,`add`-新增邀请用户,`remove`-删除邀请用户;当指定 `--invitees` 时必填 |
343
353
 
344
354
  **示例:**
345
355
 
@@ -349,6 +359,24 @@ tmeet meeting update \
349
359
  --subject "新主题" \
350
360
  --start "2026-04-10T15:00+08:00" \
351
361
  --end "2026-04-10T16:00+08:00"
362
+
363
+ # 全量替换邀请列表
364
+ tmeet meeting update \
365
+ --meeting-id "6953553464429888300" \
366
+ --invitees "open_id1,open_id2,open_id3" \
367
+ --invitees-type replace
368
+
369
+ # 新增邀请用户
370
+ tmeet meeting update \
371
+ --meeting-id "6953553464429888300" \
372
+ --invitees "open_id4,open_id5" \
373
+ --invitees-type add
374
+
375
+ # 删除邀请用户
376
+ tmeet meeting update \
377
+ --meeting-id "6953553464429888300" \
378
+ --invitees "open_id1" \
379
+ --invitees-type remove
352
380
  ```
353
381
 
354
382
  ---
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tencentcloud/tmeet",
3
- "version": "v1.0.8",
3
+ "version": "v1.0.9",
4
4
  "description": "腾讯会议 CLI 工具",
5
5
  "bin": {
6
6
  "tmeet": "./scripts/tmeet.js"