@juzi/wechaty-grpc 1.0.31 → 1.0.33

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.
@@ -65,6 +65,7 @@ export interface EventTypeMap {
65
65
  EVENT_TYPE_TAG_GROUP: 29;
66
66
  EVENT_TYPE_POST_COMMENT: 30;
67
67
  EVENT_TYPE_POST_TAP: 31;
68
+ EVENT_TYPE_ROOM_ANNOUNCE: 32;
68
69
  }
69
70
 
70
71
  export const EventType: EventTypeMap;
@@ -345,7 +345,8 @@ proto.wechaty.puppet.EventType = {
345
345
  EVENT_TYPE_TAG: 28,
346
346
  EVENT_TYPE_TAG_GROUP: 29,
347
347
  EVENT_TYPE_POST_COMMENT: 30,
348
- EVENT_TYPE_POST_TAP: 31
348
+ EVENT_TYPE_POST_TAP: 31,
349
+ EVENT_TYPE_ROOM_ANNOUNCE: 32
349
350
  };
350
351
 
351
352
  goog.object.extend(exports, proto.wechaty.puppet);
@@ -901,7 +901,7 @@ proto.wechaty.puppet.PostPayloadClient.prototype.clearSayableListList = function
901
901
 
902
902
 
903
903
  /**
904
- * repeated string visible_List = 5;
904
+ * repeated string visible_list = 5;
905
905
  * @return {!Array<string>}
906
906
  */
907
907
  proto.wechaty.puppet.PostPayloadClient.prototype.getVisibleListList = function() {
@@ -1422,7 +1422,7 @@ proto.wechaty.puppet.PostPayloadServer.prototype.setLike = function(value) {
1422
1422
 
1423
1423
 
1424
1424
  /**
1425
- * repeated string visible_List = 16;
1425
+ * repeated string visible_list = 16;
1426
1426
  * @return {!Array<string>}
1427
1427
  */
1428
1428
  proto.wechaty.puppet.PostPayloadServer.prototype.getVisibleListList = function() {
@@ -9,7 +9,7 @@ info:
9
9
 
10
10
  Wechaty Puppet Service is the RESTful API for Wechaty API, which is build on
11
11
  top of the Wechaty Puppet Abstraction and the gRPC proto definition.
12
- version: 1.0.31
12
+ version: 1.0.33
13
13
  contact:
14
14
  name: Wechaty
15
15
  url: 'https://github.com/wechaty/openapi'
@@ -2330,6 +2330,7 @@ definitions:
2330
2330
  - EVENT_TYPE_TAG_GROUP
2331
2331
  - EVENT_TYPE_POST_COMMENT
2332
2332
  - EVENT_TYPE_POST_TAP
2333
+ - EVENT_TYPE_ROOM_ANNOUNCE
2333
2334
  default: EVENT_TYPE_UNSPECIFIED
2334
2335
  puppetFileBoxChunk:
2335
2336
  type: object
@@ -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.31",
6
+ "version": "1.0.33",
7
7
  "contact": {
8
8
  "name": "Wechaty",
9
9
  "url": "https://github.com/wechaty/openapi",
@@ -3415,7 +3415,8 @@
3415
3415
  "EVENT_TYPE_TAG",
3416
3416
  "EVENT_TYPE_TAG_GROUP",
3417
3417
  "EVENT_TYPE_POST_COMMENT",
3418
- "EVENT_TYPE_POST_TAP"
3418
+ "EVENT_TYPE_POST_TAP",
3419
+ "EVENT_TYPE_ROOM_ANNOUNCE"
3419
3420
  ],
3420
3421
  "default": "EVENT_TYPE_UNSPECIFIED"
3421
3422
  },
@@ -15,22 +15,23 @@ enum EventType {
15
15
 
16
16
  reserved 5 to 15;
17
17
 
18
- EVENT_TYPE_ERROR = 16;
19
- EVENT_TYPE_FRIENDSHIP = 17;
20
- EVENT_TYPE_ROOM_INVITE = 18;
21
- EVENT_TYPE_ROOM_JOIN = 19;
22
- EVENT_TYPE_ROOM_LEAVE = 20;
23
- EVENT_TYPE_ROOM_TOPIC = 21;
24
- EVENT_TYPE_SCAN = 22;
25
- EVENT_TYPE_READY = 23;
26
- EVENT_TYPE_RESET = 24;
27
- EVENT_TYPE_LOGIN = 25;
28
- EVENT_TYPE_LOGOUT = 26;
29
- EVENT_TYPE_DIRTY = 27;
30
- EVENT_TYPE_TAG = 28;
31
- EVENT_TYPE_TAG_GROUP = 29;
32
- EVENT_TYPE_POST_COMMENT= 30;
33
- EVENT_TYPE_POST_TAP = 31;
18
+ EVENT_TYPE_ERROR = 16;
19
+ EVENT_TYPE_FRIENDSHIP = 17;
20
+ EVENT_TYPE_ROOM_INVITE = 18;
21
+ EVENT_TYPE_ROOM_JOIN = 19;
22
+ EVENT_TYPE_ROOM_LEAVE = 20;
23
+ EVENT_TYPE_ROOM_TOPIC = 21;
24
+ EVENT_TYPE_SCAN = 22;
25
+ EVENT_TYPE_READY = 23;
26
+ EVENT_TYPE_RESET = 24;
27
+ EVENT_TYPE_LOGIN = 25;
28
+ EVENT_TYPE_LOGOUT = 26;
29
+ EVENT_TYPE_DIRTY = 27;
30
+ EVENT_TYPE_TAG = 28;
31
+ EVENT_TYPE_TAG_GROUP = 29;
32
+ EVENT_TYPE_POST_COMMENT = 30;
33
+ EVENT_TYPE_POST_TAP = 31;
34
+ EVENT_TYPE_ROOM_ANNOUNCE = 32;
34
35
  }
35
36
 
36
37
  message EventRequest {}
@@ -48,7 +48,7 @@ message PostPayloadClient {
48
48
  PostType type = 3;
49
49
  repeated PostSayable sayable_list = 4;
50
50
 
51
- repeated string visible_List = 5;
51
+ repeated string visible_list = 5;
52
52
  LocationPayload location = 6;
53
53
  }
54
54
 
@@ -67,7 +67,7 @@ message PostPayloadServer {
67
67
 
68
68
  reserved 10 to 15;
69
69
 
70
- repeated string visible_List = 16;
70
+ repeated string visible_list = 16;
71
71
  LocationPayload location = 17;
72
72
  }
73
73
 
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.packageJson = void 0;
4
4
  exports.packageJson = {
5
5
  "name": "@juzi/wechaty-grpc",
6
- "version": "1.0.31",
6
+ "version": "1.0.33",
7
7
  "description": "gRPC for Wechaty",
8
8
  "type": "module",
9
9
  "exports": {
@@ -65,6 +65,7 @@ export interface EventTypeMap {
65
65
  EVENT_TYPE_TAG_GROUP: 29;
66
66
  EVENT_TYPE_POST_COMMENT: 30;
67
67
  EVENT_TYPE_POST_TAP: 31;
68
+ EVENT_TYPE_ROOM_ANNOUNCE: 32;
68
69
  }
69
70
 
70
71
  export const EventType: EventTypeMap;
@@ -345,7 +345,8 @@ proto.wechaty.puppet.EventType = {
345
345
  EVENT_TYPE_TAG: 28,
346
346
  EVENT_TYPE_TAG_GROUP: 29,
347
347
  EVENT_TYPE_POST_COMMENT: 30,
348
- EVENT_TYPE_POST_TAP: 31
348
+ EVENT_TYPE_POST_TAP: 31,
349
+ EVENT_TYPE_ROOM_ANNOUNCE: 32
349
350
  };
350
351
 
351
352
  goog.object.extend(exports, proto.wechaty.puppet);
@@ -901,7 +901,7 @@ proto.wechaty.puppet.PostPayloadClient.prototype.clearSayableListList = function
901
901
 
902
902
 
903
903
  /**
904
- * repeated string visible_List = 5;
904
+ * repeated string visible_list = 5;
905
905
  * @return {!Array<string>}
906
906
  */
907
907
  proto.wechaty.puppet.PostPayloadClient.prototype.getVisibleListList = function() {
@@ -1422,7 +1422,7 @@ proto.wechaty.puppet.PostPayloadServer.prototype.setLike = function(value) {
1422
1422
 
1423
1423
 
1424
1424
  /**
1425
- * repeated string visible_List = 16;
1425
+ * repeated string visible_list = 16;
1426
1426
  * @return {!Array<string>}
1427
1427
  */
1428
1428
  proto.wechaty.puppet.PostPayloadServer.prototype.getVisibleListList = function() {
@@ -9,7 +9,7 @@ info:
9
9
 
10
10
  Wechaty Puppet Service is the RESTful API for Wechaty API, which is build on
11
11
  top of the Wechaty Puppet Abstraction and the gRPC proto definition.
12
- version: 1.0.31
12
+ version: 1.0.33
13
13
  contact:
14
14
  name: Wechaty
15
15
  url: 'https://github.com/wechaty/openapi'
@@ -2330,6 +2330,7 @@ definitions:
2330
2330
  - EVENT_TYPE_TAG_GROUP
2331
2331
  - EVENT_TYPE_POST_COMMENT
2332
2332
  - EVENT_TYPE_POST_TAP
2333
+ - EVENT_TYPE_ROOM_ANNOUNCE
2333
2334
  default: EVENT_TYPE_UNSPECIFIED
2334
2335
  puppetFileBoxChunk:
2335
2336
  type: object
@@ -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.31",
6
+ "version": "1.0.33",
7
7
  "contact": {
8
8
  "name": "Wechaty",
9
9
  "url": "https://github.com/wechaty/openapi",
@@ -3415,7 +3415,8 @@
3415
3415
  "EVENT_TYPE_TAG",
3416
3416
  "EVENT_TYPE_TAG_GROUP",
3417
3417
  "EVENT_TYPE_POST_COMMENT",
3418
- "EVENT_TYPE_POST_TAP"
3418
+ "EVENT_TYPE_POST_TAP",
3419
+ "EVENT_TYPE_ROOM_ANNOUNCE"
3419
3420
  ],
3420
3421
  "default": "EVENT_TYPE_UNSPECIFIED"
3421
3422
  },
@@ -15,22 +15,23 @@ enum EventType {
15
15
 
16
16
  reserved 5 to 15;
17
17
 
18
- EVENT_TYPE_ERROR = 16;
19
- EVENT_TYPE_FRIENDSHIP = 17;
20
- EVENT_TYPE_ROOM_INVITE = 18;
21
- EVENT_TYPE_ROOM_JOIN = 19;
22
- EVENT_TYPE_ROOM_LEAVE = 20;
23
- EVENT_TYPE_ROOM_TOPIC = 21;
24
- EVENT_TYPE_SCAN = 22;
25
- EVENT_TYPE_READY = 23;
26
- EVENT_TYPE_RESET = 24;
27
- EVENT_TYPE_LOGIN = 25;
28
- EVENT_TYPE_LOGOUT = 26;
29
- EVENT_TYPE_DIRTY = 27;
30
- EVENT_TYPE_TAG = 28;
31
- EVENT_TYPE_TAG_GROUP = 29;
32
- EVENT_TYPE_POST_COMMENT= 30;
33
- EVENT_TYPE_POST_TAP = 31;
18
+ EVENT_TYPE_ERROR = 16;
19
+ EVENT_TYPE_FRIENDSHIP = 17;
20
+ EVENT_TYPE_ROOM_INVITE = 18;
21
+ EVENT_TYPE_ROOM_JOIN = 19;
22
+ EVENT_TYPE_ROOM_LEAVE = 20;
23
+ EVENT_TYPE_ROOM_TOPIC = 21;
24
+ EVENT_TYPE_SCAN = 22;
25
+ EVENT_TYPE_READY = 23;
26
+ EVENT_TYPE_RESET = 24;
27
+ EVENT_TYPE_LOGIN = 25;
28
+ EVENT_TYPE_LOGOUT = 26;
29
+ EVENT_TYPE_DIRTY = 27;
30
+ EVENT_TYPE_TAG = 28;
31
+ EVENT_TYPE_TAG_GROUP = 29;
32
+ EVENT_TYPE_POST_COMMENT = 30;
33
+ EVENT_TYPE_POST_TAP = 31;
34
+ EVENT_TYPE_ROOM_ANNOUNCE = 32;
34
35
  }
35
36
 
36
37
  message EventRequest {}
@@ -48,7 +48,7 @@ message PostPayloadClient {
48
48
  PostType type = 3;
49
49
  repeated PostSayable sayable_list = 4;
50
50
 
51
- repeated string visible_List = 5;
51
+ repeated string visible_list = 5;
52
52
  LocationPayload location = 6;
53
53
  }
54
54
 
@@ -67,7 +67,7 @@ message PostPayloadServer {
67
67
 
68
68
  reserved 10 to 15;
69
69
 
70
- repeated string visible_List = 16;
70
+ repeated string visible_list = 16;
71
71
  LocationPayload location = 17;
72
72
  }
73
73
 
@@ -1,6 +1,6 @@
1
1
  export const packageJson = {
2
2
  "name": "@juzi/wechaty-grpc",
3
- "version": "1.0.31",
3
+ "version": "1.0.33",
4
4
  "description": "gRPC for Wechaty",
5
5
  "type": "module",
6
6
  "exports": {
@@ -65,6 +65,7 @@ export interface EventTypeMap {
65
65
  EVENT_TYPE_TAG_GROUP: 29;
66
66
  EVENT_TYPE_POST_COMMENT: 30;
67
67
  EVENT_TYPE_POST_TAP: 31;
68
+ EVENT_TYPE_ROOM_ANNOUNCE: 32;
68
69
  }
69
70
 
70
71
  export const EventType: EventTypeMap;
@@ -345,7 +345,8 @@ proto.wechaty.puppet.EventType = {
345
345
  EVENT_TYPE_TAG: 28,
346
346
  EVENT_TYPE_TAG_GROUP: 29,
347
347
  EVENT_TYPE_POST_COMMENT: 30,
348
- EVENT_TYPE_POST_TAP: 31
348
+ EVENT_TYPE_POST_TAP: 31,
349
+ EVENT_TYPE_ROOM_ANNOUNCE: 32
349
350
  };
350
351
 
351
352
  goog.object.extend(exports, proto.wechaty.puppet);
@@ -901,7 +901,7 @@ proto.wechaty.puppet.PostPayloadClient.prototype.clearSayableListList = function
901
901
 
902
902
 
903
903
  /**
904
- * repeated string visible_List = 5;
904
+ * repeated string visible_list = 5;
905
905
  * @return {!Array<string>}
906
906
  */
907
907
  proto.wechaty.puppet.PostPayloadClient.prototype.getVisibleListList = function() {
@@ -1422,7 +1422,7 @@ proto.wechaty.puppet.PostPayloadServer.prototype.setLike = function(value) {
1422
1422
 
1423
1423
 
1424
1424
  /**
1425
- * repeated string visible_List = 16;
1425
+ * repeated string visible_list = 16;
1426
1426
  * @return {!Array<string>}
1427
1427
  */
1428
1428
  proto.wechaty.puppet.PostPayloadServer.prototype.getVisibleListList = function() {
@@ -9,7 +9,7 @@ info:
9
9
 
10
10
  Wechaty Puppet Service is the RESTful API for Wechaty API, which is build on
11
11
  top of the Wechaty Puppet Abstraction and the gRPC proto definition.
12
- version: 1.0.31
12
+ version: 1.0.33
13
13
  contact:
14
14
  name: Wechaty
15
15
  url: 'https://github.com/wechaty/openapi'
@@ -2330,6 +2330,7 @@ definitions:
2330
2330
  - EVENT_TYPE_TAG_GROUP
2331
2331
  - EVENT_TYPE_POST_COMMENT
2332
2332
  - EVENT_TYPE_POST_TAP
2333
+ - EVENT_TYPE_ROOM_ANNOUNCE
2333
2334
  default: EVENT_TYPE_UNSPECIFIED
2334
2335
  puppetFileBoxChunk:
2335
2336
  type: object
@@ -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.31",
6
+ "version": "1.0.33",
7
7
  "contact": {
8
8
  "name": "Wechaty",
9
9
  "url": "https://github.com/wechaty/openapi",
@@ -3415,7 +3415,8 @@
3415
3415
  "EVENT_TYPE_TAG",
3416
3416
  "EVENT_TYPE_TAG_GROUP",
3417
3417
  "EVENT_TYPE_POST_COMMENT",
3418
- "EVENT_TYPE_POST_TAP"
3418
+ "EVENT_TYPE_POST_TAP",
3419
+ "EVENT_TYPE_ROOM_ANNOUNCE"
3419
3420
  ],
3420
3421
  "default": "EVENT_TYPE_UNSPECIFIED"
3421
3422
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juzi/wechaty-grpc",
3
- "version": "1.0.31",
3
+ "version": "1.0.33",
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.31",
7
+ "version": "1.0.33",
8
8
  "description": "gRPC for Wechaty",
9
9
  "type": "module",
10
10
  "exports": {