@juzi/wechaty-grpc 1.0.33 → 1.0.35

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.
@@ -3,7 +3,7 @@
3
3
  "info": {
4
4
  "title": "Wechaty Puppet Service OpenAPI Specification",
5
5
  "description": "Wechaty is a Conversational RPA SDK for chatbot makers. With only 6 lines of code, you can create a bot on the most popular IMs like WeChat, Whatsapp, WeCom, Gitter, etc.\n\nWechaty Puppet Service is the RESTful API for Wechaty API, which is build on top of the Wechaty Puppet Abstraction and the gRPC proto definition.",
6
- "version": "1.0.33",
6
+ "version": "1.0.35",
7
7
  "contact": {
8
8
  "name": "Wechaty",
9
9
  "url": "https://github.com/wechaty/openapi",
@@ -507,7 +507,12 @@
507
507
  "in": "body",
508
508
  "required": true,
509
509
  "schema": {
510
- "type": "object"
510
+ "type": "object",
511
+ "properties": {
512
+ "hasRead": {
513
+ "type": "boolean"
514
+ }
515
+ }
511
516
  }
512
517
  }
513
518
  ],
@@ -3345,7 +3350,12 @@
3345
3350
  "title": "类型枚举"
3346
3351
  },
3347
3352
  "puppetConversationReadResponse": {
3348
- "type": "object"
3353
+ "type": "object",
3354
+ "properties": {
3355
+ "hasRead": {
3356
+ "type": "boolean"
3357
+ }
3358
+ }
3349
3359
  },
3350
3360
  "puppetCurrentUserResponse": {
3351
3361
  "type": "object",
@@ -4363,6 +4373,18 @@
4363
4373
  }
4364
4374
  }
4365
4375
  },
4376
+ "puppetRoomMemberJoinSceneType": {
4377
+ "type": "string",
4378
+ "enum": [
4379
+ "ROOM_MEMBER_JOIN_SCENE_TYPE_UNKNOWN",
4380
+ "ROOM_MEMBER_JOIN_SCENE_TYPE_ADD",
4381
+ "ROOM_MEMBER_JOIN_SCENE_TYPE_INVITE_LINK",
4382
+ "ROOM_MEMBER_JOIN_SCENE_TYPE_QRCODE",
4383
+ "ROOM_MEMBER_JOIN_SCENE_TYPE_OTHER"
4384
+ ],
4385
+ "default": "ROOM_MEMBER_JOIN_SCENE_TYPE_UNKNOWN",
4386
+ "title": "类型枚举"
4387
+ },
4366
4388
  "puppetRoomMemberListResponse": {
4367
4389
  "type": "object",
4368
4390
  "properties": {
@@ -4398,6 +4420,13 @@
4398
4420
  },
4399
4421
  "additionalInfo": {
4400
4422
  "type": "string"
4423
+ },
4424
+ "joinTime": {
4425
+ "type": "number",
4426
+ "format": "double"
4427
+ },
4428
+ "joinScene": {
4429
+ "$ref": "#/definitions/puppetRoomMemberJoinSceneType"
4401
4430
  }
4402
4431
  }
4403
4432
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juzi/wechaty-grpc",
3
- "version": "1.0.33",
3
+ "version": "1.0.35",
4
4
  "description": "gRPC for Wechaty",
5
5
  "type": "module",
6
6
  "exports": {
@@ -4,7 +4,7 @@
4
4
  import type { PackageJson } from 'type-fest'
5
5
  export const packageJson: PackageJson = {
6
6
  "name": "@juzi/wechaty-grpc",
7
- "version": "1.0.33",
7
+ "version": "1.0.35",
8
8
  "description": "gRPC for Wechaty",
9
9
  "type": "module",
10
10
  "exports": {