@juzi/wechaty-grpc 1.0.107 → 1.0.108

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.
@@ -81,6 +81,7 @@ export interface EventTypeMap {
81
81
  EVENT_TYPE_VERIFY_CODE: 33;
82
82
  EVENT_TYPE_VERIFY_SLIDE: 34;
83
83
  EVENT_TYPE_CALL: 35;
84
+ EVENT_TYPE_SAME_NET_VERIFY: 36;
84
85
  }
85
86
 
86
87
  export const EventType: EventTypeMap;
@@ -438,7 +438,8 @@ proto.wechaty.puppet.EventType = {
438
438
  EVENT_TYPE_ROOM_ANNOUNCE: 32,
439
439
  EVENT_TYPE_VERIFY_CODE: 33,
440
440
  EVENT_TYPE_VERIFY_SLIDE: 34,
441
- EVENT_TYPE_CALL: 35
441
+ EVENT_TYPE_CALL: 35,
442
+ EVENT_TYPE_SAME_NET_VERIFY: 36
442
443
  };
443
444
 
444
445
  goog.object.extend(exports, proto.wechaty.puppet);
@@ -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.107
12
+ version: 1.0.108
13
13
  contact:
14
14
  name: Wechaty
15
15
  url: https://github.com/wechaty/openapi
@@ -4194,7 +4194,11 @@ definitions:
4194
4194
  - EVENT_TYPE_VERIFY_CODE
4195
4195
  - EVENT_TYPE_VERIFY_SLIDE
4196
4196
  - EVENT_TYPE_CALL
4197
+ - EVENT_TYPE_SAME_NET_VERIFY
4197
4198
  default: EVENT_TYPE_UNSPECIFIED
4199
+ description: >-
4200
+ - EVENT_TYPE_SAME_NET_VERIFY: same network verify for personal wechat
4201
+ login on Mac protocol
4198
4202
  puppetFriendshipAcceptResponse:
4199
4203
  type: object
4200
4204
  puppetFriendshipAddResponse:
@@ -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.107",
6
+ "version": "1.0.108",
7
7
  "contact": {
8
8
  "name": "Wechaty",
9
9
  "url": "https://github.com/wechaty/openapi",
@@ -6150,9 +6150,11 @@
6150
6150
  "EVENT_TYPE_ROOM_ANNOUNCE",
6151
6151
  "EVENT_TYPE_VERIFY_CODE",
6152
6152
  "EVENT_TYPE_VERIFY_SLIDE",
6153
- "EVENT_TYPE_CALL"
6153
+ "EVENT_TYPE_CALL",
6154
+ "EVENT_TYPE_SAME_NET_VERIFY"
6154
6155
  ],
6155
- "default": "EVENT_TYPE_UNSPECIFIED"
6156
+ "default": "EVENT_TYPE_UNSPECIFIED",
6157
+ "description": "- EVENT_TYPE_SAME_NET_VERIFY: same network verify for personal wechat login on Mac protocol"
6156
6158
  },
6157
6159
  "puppetFriendshipAcceptResponse": {
6158
6160
  "type": "object"
@@ -35,6 +35,8 @@ enum EventType {
35
35
  EVENT_TYPE_VERIFY_CODE = 33;
36
36
  EVENT_TYPE_VERIFY_SLIDE = 34;
37
37
  EVENT_TYPE_CALL = 35;
38
+ // same network verify for personal wechat login on Mac protocol
39
+ EVENT_TYPE_SAME_NET_VERIFY = 36;
38
40
  }
39
41
 
40
42
  message EventRequest {
@@ -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.107",
6
+ "version": "1.0.108",
7
7
  "description": "gRPC for Wechaty",
8
8
  "type": "module",
9
9
  "exports": {
@@ -81,6 +81,7 @@ export interface EventTypeMap {
81
81
  EVENT_TYPE_VERIFY_CODE: 33;
82
82
  EVENT_TYPE_VERIFY_SLIDE: 34;
83
83
  EVENT_TYPE_CALL: 35;
84
+ EVENT_TYPE_SAME_NET_VERIFY: 36;
84
85
  }
85
86
 
86
87
  export const EventType: EventTypeMap;
@@ -438,7 +438,8 @@ proto.wechaty.puppet.EventType = {
438
438
  EVENT_TYPE_ROOM_ANNOUNCE: 32,
439
439
  EVENT_TYPE_VERIFY_CODE: 33,
440
440
  EVENT_TYPE_VERIFY_SLIDE: 34,
441
- EVENT_TYPE_CALL: 35
441
+ EVENT_TYPE_CALL: 35,
442
+ EVENT_TYPE_SAME_NET_VERIFY: 36
442
443
  };
443
444
 
444
445
  goog.object.extend(exports, proto.wechaty.puppet);
@@ -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.107
12
+ version: 1.0.108
13
13
  contact:
14
14
  name: Wechaty
15
15
  url: https://github.com/wechaty/openapi
@@ -4194,7 +4194,11 @@ definitions:
4194
4194
  - EVENT_TYPE_VERIFY_CODE
4195
4195
  - EVENT_TYPE_VERIFY_SLIDE
4196
4196
  - EVENT_TYPE_CALL
4197
+ - EVENT_TYPE_SAME_NET_VERIFY
4197
4198
  default: EVENT_TYPE_UNSPECIFIED
4199
+ description: >-
4200
+ - EVENT_TYPE_SAME_NET_VERIFY: same network verify for personal wechat
4201
+ login on Mac protocol
4198
4202
  puppetFriendshipAcceptResponse:
4199
4203
  type: object
4200
4204
  puppetFriendshipAddResponse:
@@ -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.107",
6
+ "version": "1.0.108",
7
7
  "contact": {
8
8
  "name": "Wechaty",
9
9
  "url": "https://github.com/wechaty/openapi",
@@ -6150,9 +6150,11 @@
6150
6150
  "EVENT_TYPE_ROOM_ANNOUNCE",
6151
6151
  "EVENT_TYPE_VERIFY_CODE",
6152
6152
  "EVENT_TYPE_VERIFY_SLIDE",
6153
- "EVENT_TYPE_CALL"
6153
+ "EVENT_TYPE_CALL",
6154
+ "EVENT_TYPE_SAME_NET_VERIFY"
6154
6155
  ],
6155
- "default": "EVENT_TYPE_UNSPECIFIED"
6156
+ "default": "EVENT_TYPE_UNSPECIFIED",
6157
+ "description": "- EVENT_TYPE_SAME_NET_VERIFY: same network verify for personal wechat login on Mac protocol"
6156
6158
  },
6157
6159
  "puppetFriendshipAcceptResponse": {
6158
6160
  "type": "object"
@@ -35,6 +35,8 @@ enum EventType {
35
35
  EVENT_TYPE_VERIFY_CODE = 33;
36
36
  EVENT_TYPE_VERIFY_SLIDE = 34;
37
37
  EVENT_TYPE_CALL = 35;
38
+ // same network verify for personal wechat login on Mac protocol
39
+ EVENT_TYPE_SAME_NET_VERIFY = 36;
38
40
  }
39
41
 
40
42
  message EventRequest {
@@ -1,6 +1,6 @@
1
1
  export const packageJson = {
2
2
  "name": "@juzi/wechaty-grpc",
3
- "version": "1.0.107",
3
+ "version": "1.0.108",
4
4
  "description": "gRPC for Wechaty",
5
5
  "type": "module",
6
6
  "exports": {
@@ -81,6 +81,7 @@ export interface EventTypeMap {
81
81
  EVENT_TYPE_VERIFY_CODE: 33;
82
82
  EVENT_TYPE_VERIFY_SLIDE: 34;
83
83
  EVENT_TYPE_CALL: 35;
84
+ EVENT_TYPE_SAME_NET_VERIFY: 36;
84
85
  }
85
86
 
86
87
  export const EventType: EventTypeMap;
@@ -438,7 +438,8 @@ proto.wechaty.puppet.EventType = {
438
438
  EVENT_TYPE_ROOM_ANNOUNCE: 32,
439
439
  EVENT_TYPE_VERIFY_CODE: 33,
440
440
  EVENT_TYPE_VERIFY_SLIDE: 34,
441
- EVENT_TYPE_CALL: 35
441
+ EVENT_TYPE_CALL: 35,
442
+ EVENT_TYPE_SAME_NET_VERIFY: 36
442
443
  };
443
444
 
444
445
  goog.object.extend(exports, proto.wechaty.puppet);
@@ -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.107
12
+ version: 1.0.108
13
13
  contact:
14
14
  name: Wechaty
15
15
  url: https://github.com/wechaty/openapi
@@ -4194,7 +4194,11 @@ definitions:
4194
4194
  - EVENT_TYPE_VERIFY_CODE
4195
4195
  - EVENT_TYPE_VERIFY_SLIDE
4196
4196
  - EVENT_TYPE_CALL
4197
+ - EVENT_TYPE_SAME_NET_VERIFY
4197
4198
  default: EVENT_TYPE_UNSPECIFIED
4199
+ description: >-
4200
+ - EVENT_TYPE_SAME_NET_VERIFY: same network verify for personal wechat
4201
+ login on Mac protocol
4198
4202
  puppetFriendshipAcceptResponse:
4199
4203
  type: object
4200
4204
  puppetFriendshipAddResponse:
@@ -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.107",
6
+ "version": "1.0.108",
7
7
  "contact": {
8
8
  "name": "Wechaty",
9
9
  "url": "https://github.com/wechaty/openapi",
@@ -6150,9 +6150,11 @@
6150
6150
  "EVENT_TYPE_ROOM_ANNOUNCE",
6151
6151
  "EVENT_TYPE_VERIFY_CODE",
6152
6152
  "EVENT_TYPE_VERIFY_SLIDE",
6153
- "EVENT_TYPE_CALL"
6153
+ "EVENT_TYPE_CALL",
6154
+ "EVENT_TYPE_SAME_NET_VERIFY"
6154
6155
  ],
6155
- "default": "EVENT_TYPE_UNSPECIFIED"
6156
+ "default": "EVENT_TYPE_UNSPECIFIED",
6157
+ "description": "- EVENT_TYPE_SAME_NET_VERIFY: same network verify for personal wechat login on Mac protocol"
6156
6158
  },
6157
6159
  "puppetFriendshipAcceptResponse": {
6158
6160
  "type": "object"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juzi/wechaty-grpc",
3
- "version": "1.0.107",
3
+ "version": "1.0.108",
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.107",
7
+ "version": "1.0.108",
8
8
  "description": "gRPC for Wechaty",
9
9
  "type": "module",
10
10
  "exports": {