@juzi/wechaty-grpc 1.0.64 → 1.0.65

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.
@@ -383,10 +383,10 @@ export namespace MessageCallRecordRequest {
383
383
  }
384
384
 
385
385
  export class MessageCallRecordlResponse extends jspb.Message {
386
- hasChannel(): boolean;
387
- clearChannel(): void;
388
- getChannel(): wechaty_puppet_call_pb.CallRecordPayload | undefined;
389
- setChannel(value?: wechaty_puppet_call_pb.CallRecordPayload): void;
386
+ hasCallRecord(): boolean;
387
+ clearCallRecord(): void;
388
+ getCallRecord(): wechaty_puppet_call_pb.CallRecordPayload | undefined;
389
+ setCallRecord(value?: wechaty_puppet_call_pb.CallRecordPayload): void;
390
390
 
391
391
  serializeBinary(): Uint8Array;
392
392
  toObject(includeInstance?: boolean): MessageCallRecordlResponse.AsObject;
@@ -400,7 +400,7 @@ export class MessageCallRecordlResponse extends jspb.Message {
400
400
 
401
401
  export namespace MessageCallRecordlResponse {
402
402
  export type AsObject = {
403
- channel?: wechaty_puppet_call_pb.CallRecordPayload.AsObject,
403
+ callRecord?: wechaty_puppet_call_pb.CallRecordPayload.AsObject,
404
404
  }
405
405
  }
406
406
 
@@ -3574,7 +3574,7 @@ proto.wechaty.puppet.MessageCallRecordlResponse.prototype.toObject = function(op
3574
3574
  */
3575
3575
  proto.wechaty.puppet.MessageCallRecordlResponse.toObject = function(includeInstance, msg) {
3576
3576
  var f, obj = {
3577
- channel: (f = msg.getChannel()) && wechaty_puppet_call_pb.CallRecordPayload.toObject(includeInstance, f)
3577
+ callRecord: (f = msg.getCallRecord()) && wechaty_puppet_call_pb.CallRecordPayload.toObject(includeInstance, f)
3578
3578
  };
3579
3579
 
3580
3580
  if (includeInstance) {
@@ -3614,7 +3614,7 @@ proto.wechaty.puppet.MessageCallRecordlResponse.deserializeBinaryFromReader = fu
3614
3614
  case 1:
3615
3615
  var value = new wechaty_puppet_call_pb.CallRecordPayload;
3616
3616
  reader.readMessage(value,wechaty_puppet_call_pb.CallRecordPayload.deserializeBinaryFromReader);
3617
- msg.setChannel(value);
3617
+ msg.setCallRecord(value);
3618
3618
  break;
3619
3619
  default:
3620
3620
  reader.skipField();
@@ -3645,7 +3645,7 @@ proto.wechaty.puppet.MessageCallRecordlResponse.prototype.serializeBinary = func
3645
3645
  */
3646
3646
  proto.wechaty.puppet.MessageCallRecordlResponse.serializeBinaryToWriter = function(message, writer) {
3647
3647
  var f = undefined;
3648
- f = message.getChannel();
3648
+ f = message.getCallRecord();
3649
3649
  if (f != null) {
3650
3650
  writer.writeMessage(
3651
3651
  1,
@@ -3657,10 +3657,10 @@ proto.wechaty.puppet.MessageCallRecordlResponse.serializeBinaryToWriter = functi
3657
3657
 
3658
3658
 
3659
3659
  /**
3660
- * optional CallRecordPayload channel = 1;
3660
+ * optional CallRecordPayload call_record = 1;
3661
3661
  * @return {?proto.wechaty.puppet.CallRecordPayload}
3662
3662
  */
3663
- proto.wechaty.puppet.MessageCallRecordlResponse.prototype.getChannel = function() {
3663
+ proto.wechaty.puppet.MessageCallRecordlResponse.prototype.getCallRecord = function() {
3664
3664
  return /** @type{?proto.wechaty.puppet.CallRecordPayload} */ (
3665
3665
  jspb.Message.getWrapperField(this, wechaty_puppet_call_pb.CallRecordPayload, 1));
3666
3666
  };
@@ -3670,7 +3670,7 @@ proto.wechaty.puppet.MessageCallRecordlResponse.prototype.getChannel = function(
3670
3670
  * @param {?proto.wechaty.puppet.CallRecordPayload|undefined} value
3671
3671
  * @return {!proto.wechaty.puppet.MessageCallRecordlResponse} returns this
3672
3672
  */
3673
- proto.wechaty.puppet.MessageCallRecordlResponse.prototype.setChannel = function(value) {
3673
+ proto.wechaty.puppet.MessageCallRecordlResponse.prototype.setCallRecord = function(value) {
3674
3674
  return jspb.Message.setWrapperField(this, 1, value);
3675
3675
  };
3676
3676
 
@@ -3679,8 +3679,8 @@ proto.wechaty.puppet.MessageCallRecordlResponse.prototype.setChannel = function(
3679
3679
  * Clears the message field making it undefined.
3680
3680
  * @return {!proto.wechaty.puppet.MessageCallRecordlResponse} returns this
3681
3681
  */
3682
- proto.wechaty.puppet.MessageCallRecordlResponse.prototype.clearChannel = function() {
3683
- return this.setChannel(undefined);
3682
+ proto.wechaty.puppet.MessageCallRecordlResponse.prototype.clearCallRecord = function() {
3683
+ return this.setCallRecord(undefined);
3684
3684
  };
3685
3685
 
3686
3686
 
@@ -3688,7 +3688,7 @@ proto.wechaty.puppet.MessageCallRecordlResponse.prototype.clearChannel = functio
3688
3688
  * Returns whether this field is set.
3689
3689
  * @return {boolean}
3690
3690
  */
3691
- proto.wechaty.puppet.MessageCallRecordlResponse.prototype.hasChannel = function() {
3691
+ proto.wechaty.puppet.MessageCallRecordlResponse.prototype.hasCallRecord = function() {
3692
3692
  return jspb.Message.getField(this, 1) != null;
3693
3693
  };
3694
3694
 
@@ -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.64
12
+ version: 1.0.65
13
13
  contact:
14
14
  name: Wechaty
15
15
  url: https://github.com/wechaty/openapi
@@ -2998,7 +2998,7 @@ definitions:
2998
2998
  puppetMessageCallRecordlResponse:
2999
2999
  type: object
3000
3000
  properties:
3001
- channel:
3001
+ callRecord:
3002
3002
  $ref: '#/definitions/puppetCallRecordPayload'
3003
3003
  puppetMessageChannelResponse:
3004
3004
  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.64",
6
+ "version": "1.0.65",
7
7
  "contact": {
8
8
  "name": "Wechaty",
9
9
  "url": "https://github.com/wechaty/openapi",
@@ -4332,7 +4332,7 @@
4332
4332
  "puppetMessageCallRecordlResponse": {
4333
4333
  "type": "object",
4334
4334
  "properties": {
4335
- "channel": {
4335
+ "callRecord": {
4336
4336
  "$ref": "#/definitions/puppetCallRecordPayload"
4337
4337
  }
4338
4338
  }
@@ -128,7 +128,7 @@ message MessageCallRecordRequest {
128
128
  string id = 1;
129
129
  }
130
130
  message MessageCallRecordlResponse {
131
- CallRecordPayload channel = 1;
131
+ CallRecordPayload call_record = 1;
132
132
  }
133
133
 
134
134
 
@@ -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.64",
6
+ "version": "1.0.65",
7
7
  "description": "gRPC for Wechaty",
8
8
  "type": "module",
9
9
  "exports": {
@@ -383,10 +383,10 @@ export namespace MessageCallRecordRequest {
383
383
  }
384
384
 
385
385
  export class MessageCallRecordlResponse extends jspb.Message {
386
- hasChannel(): boolean;
387
- clearChannel(): void;
388
- getChannel(): wechaty_puppet_call_pb.CallRecordPayload | undefined;
389
- setChannel(value?: wechaty_puppet_call_pb.CallRecordPayload): void;
386
+ hasCallRecord(): boolean;
387
+ clearCallRecord(): void;
388
+ getCallRecord(): wechaty_puppet_call_pb.CallRecordPayload | undefined;
389
+ setCallRecord(value?: wechaty_puppet_call_pb.CallRecordPayload): void;
390
390
 
391
391
  serializeBinary(): Uint8Array;
392
392
  toObject(includeInstance?: boolean): MessageCallRecordlResponse.AsObject;
@@ -400,7 +400,7 @@ export class MessageCallRecordlResponse extends jspb.Message {
400
400
 
401
401
  export namespace MessageCallRecordlResponse {
402
402
  export type AsObject = {
403
- channel?: wechaty_puppet_call_pb.CallRecordPayload.AsObject,
403
+ callRecord?: wechaty_puppet_call_pb.CallRecordPayload.AsObject,
404
404
  }
405
405
  }
406
406
 
@@ -3574,7 +3574,7 @@ proto.wechaty.puppet.MessageCallRecordlResponse.prototype.toObject = function(op
3574
3574
  */
3575
3575
  proto.wechaty.puppet.MessageCallRecordlResponse.toObject = function(includeInstance, msg) {
3576
3576
  var f, obj = {
3577
- channel: (f = msg.getChannel()) && wechaty_puppet_call_pb.CallRecordPayload.toObject(includeInstance, f)
3577
+ callRecord: (f = msg.getCallRecord()) && wechaty_puppet_call_pb.CallRecordPayload.toObject(includeInstance, f)
3578
3578
  };
3579
3579
 
3580
3580
  if (includeInstance) {
@@ -3614,7 +3614,7 @@ proto.wechaty.puppet.MessageCallRecordlResponse.deserializeBinaryFromReader = fu
3614
3614
  case 1:
3615
3615
  var value = new wechaty_puppet_call_pb.CallRecordPayload;
3616
3616
  reader.readMessage(value,wechaty_puppet_call_pb.CallRecordPayload.deserializeBinaryFromReader);
3617
- msg.setChannel(value);
3617
+ msg.setCallRecord(value);
3618
3618
  break;
3619
3619
  default:
3620
3620
  reader.skipField();
@@ -3645,7 +3645,7 @@ proto.wechaty.puppet.MessageCallRecordlResponse.prototype.serializeBinary = func
3645
3645
  */
3646
3646
  proto.wechaty.puppet.MessageCallRecordlResponse.serializeBinaryToWriter = function(message, writer) {
3647
3647
  var f = undefined;
3648
- f = message.getChannel();
3648
+ f = message.getCallRecord();
3649
3649
  if (f != null) {
3650
3650
  writer.writeMessage(
3651
3651
  1,
@@ -3657,10 +3657,10 @@ proto.wechaty.puppet.MessageCallRecordlResponse.serializeBinaryToWriter = functi
3657
3657
 
3658
3658
 
3659
3659
  /**
3660
- * optional CallRecordPayload channel = 1;
3660
+ * optional CallRecordPayload call_record = 1;
3661
3661
  * @return {?proto.wechaty.puppet.CallRecordPayload}
3662
3662
  */
3663
- proto.wechaty.puppet.MessageCallRecordlResponse.prototype.getChannel = function() {
3663
+ proto.wechaty.puppet.MessageCallRecordlResponse.prototype.getCallRecord = function() {
3664
3664
  return /** @type{?proto.wechaty.puppet.CallRecordPayload} */ (
3665
3665
  jspb.Message.getWrapperField(this, wechaty_puppet_call_pb.CallRecordPayload, 1));
3666
3666
  };
@@ -3670,7 +3670,7 @@ proto.wechaty.puppet.MessageCallRecordlResponse.prototype.getChannel = function(
3670
3670
  * @param {?proto.wechaty.puppet.CallRecordPayload|undefined} value
3671
3671
  * @return {!proto.wechaty.puppet.MessageCallRecordlResponse} returns this
3672
3672
  */
3673
- proto.wechaty.puppet.MessageCallRecordlResponse.prototype.setChannel = function(value) {
3673
+ proto.wechaty.puppet.MessageCallRecordlResponse.prototype.setCallRecord = function(value) {
3674
3674
  return jspb.Message.setWrapperField(this, 1, value);
3675
3675
  };
3676
3676
 
@@ -3679,8 +3679,8 @@ proto.wechaty.puppet.MessageCallRecordlResponse.prototype.setChannel = function(
3679
3679
  * Clears the message field making it undefined.
3680
3680
  * @return {!proto.wechaty.puppet.MessageCallRecordlResponse} returns this
3681
3681
  */
3682
- proto.wechaty.puppet.MessageCallRecordlResponse.prototype.clearChannel = function() {
3683
- return this.setChannel(undefined);
3682
+ proto.wechaty.puppet.MessageCallRecordlResponse.prototype.clearCallRecord = function() {
3683
+ return this.setCallRecord(undefined);
3684
3684
  };
3685
3685
 
3686
3686
 
@@ -3688,7 +3688,7 @@ proto.wechaty.puppet.MessageCallRecordlResponse.prototype.clearChannel = functio
3688
3688
  * Returns whether this field is set.
3689
3689
  * @return {boolean}
3690
3690
  */
3691
- proto.wechaty.puppet.MessageCallRecordlResponse.prototype.hasChannel = function() {
3691
+ proto.wechaty.puppet.MessageCallRecordlResponse.prototype.hasCallRecord = function() {
3692
3692
  return jspb.Message.getField(this, 1) != null;
3693
3693
  };
3694
3694
 
@@ -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.64
12
+ version: 1.0.65
13
13
  contact:
14
14
  name: Wechaty
15
15
  url: https://github.com/wechaty/openapi
@@ -2998,7 +2998,7 @@ definitions:
2998
2998
  puppetMessageCallRecordlResponse:
2999
2999
  type: object
3000
3000
  properties:
3001
- channel:
3001
+ callRecord:
3002
3002
  $ref: '#/definitions/puppetCallRecordPayload'
3003
3003
  puppetMessageChannelResponse:
3004
3004
  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.64",
6
+ "version": "1.0.65",
7
7
  "contact": {
8
8
  "name": "Wechaty",
9
9
  "url": "https://github.com/wechaty/openapi",
@@ -4332,7 +4332,7 @@
4332
4332
  "puppetMessageCallRecordlResponse": {
4333
4333
  "type": "object",
4334
4334
  "properties": {
4335
- "channel": {
4335
+ "callRecord": {
4336
4336
  "$ref": "#/definitions/puppetCallRecordPayload"
4337
4337
  }
4338
4338
  }
@@ -128,7 +128,7 @@ message MessageCallRecordRequest {
128
128
  string id = 1;
129
129
  }
130
130
  message MessageCallRecordlResponse {
131
- CallRecordPayload channel = 1;
131
+ CallRecordPayload call_record = 1;
132
132
  }
133
133
 
134
134
 
@@ -1,6 +1,6 @@
1
1
  export const packageJson = {
2
2
  "name": "@juzi/wechaty-grpc",
3
- "version": "1.0.64",
3
+ "version": "1.0.65",
4
4
  "description": "gRPC for Wechaty",
5
5
  "type": "module",
6
6
  "exports": {
@@ -383,10 +383,10 @@ export namespace MessageCallRecordRequest {
383
383
  }
384
384
 
385
385
  export class MessageCallRecordlResponse extends jspb.Message {
386
- hasChannel(): boolean;
387
- clearChannel(): void;
388
- getChannel(): wechaty_puppet_call_pb.CallRecordPayload | undefined;
389
- setChannel(value?: wechaty_puppet_call_pb.CallRecordPayload): void;
386
+ hasCallRecord(): boolean;
387
+ clearCallRecord(): void;
388
+ getCallRecord(): wechaty_puppet_call_pb.CallRecordPayload | undefined;
389
+ setCallRecord(value?: wechaty_puppet_call_pb.CallRecordPayload): void;
390
390
 
391
391
  serializeBinary(): Uint8Array;
392
392
  toObject(includeInstance?: boolean): MessageCallRecordlResponse.AsObject;
@@ -400,7 +400,7 @@ export class MessageCallRecordlResponse extends jspb.Message {
400
400
 
401
401
  export namespace MessageCallRecordlResponse {
402
402
  export type AsObject = {
403
- channel?: wechaty_puppet_call_pb.CallRecordPayload.AsObject,
403
+ callRecord?: wechaty_puppet_call_pb.CallRecordPayload.AsObject,
404
404
  }
405
405
  }
406
406
 
@@ -3574,7 +3574,7 @@ proto.wechaty.puppet.MessageCallRecordlResponse.prototype.toObject = function(op
3574
3574
  */
3575
3575
  proto.wechaty.puppet.MessageCallRecordlResponse.toObject = function(includeInstance, msg) {
3576
3576
  var f, obj = {
3577
- channel: (f = msg.getChannel()) && wechaty_puppet_call_pb.CallRecordPayload.toObject(includeInstance, f)
3577
+ callRecord: (f = msg.getCallRecord()) && wechaty_puppet_call_pb.CallRecordPayload.toObject(includeInstance, f)
3578
3578
  };
3579
3579
 
3580
3580
  if (includeInstance) {
@@ -3614,7 +3614,7 @@ proto.wechaty.puppet.MessageCallRecordlResponse.deserializeBinaryFromReader = fu
3614
3614
  case 1:
3615
3615
  var value = new wechaty_puppet_call_pb.CallRecordPayload;
3616
3616
  reader.readMessage(value,wechaty_puppet_call_pb.CallRecordPayload.deserializeBinaryFromReader);
3617
- msg.setChannel(value);
3617
+ msg.setCallRecord(value);
3618
3618
  break;
3619
3619
  default:
3620
3620
  reader.skipField();
@@ -3645,7 +3645,7 @@ proto.wechaty.puppet.MessageCallRecordlResponse.prototype.serializeBinary = func
3645
3645
  */
3646
3646
  proto.wechaty.puppet.MessageCallRecordlResponse.serializeBinaryToWriter = function(message, writer) {
3647
3647
  var f = undefined;
3648
- f = message.getChannel();
3648
+ f = message.getCallRecord();
3649
3649
  if (f != null) {
3650
3650
  writer.writeMessage(
3651
3651
  1,
@@ -3657,10 +3657,10 @@ proto.wechaty.puppet.MessageCallRecordlResponse.serializeBinaryToWriter = functi
3657
3657
 
3658
3658
 
3659
3659
  /**
3660
- * optional CallRecordPayload channel = 1;
3660
+ * optional CallRecordPayload call_record = 1;
3661
3661
  * @return {?proto.wechaty.puppet.CallRecordPayload}
3662
3662
  */
3663
- proto.wechaty.puppet.MessageCallRecordlResponse.prototype.getChannel = function() {
3663
+ proto.wechaty.puppet.MessageCallRecordlResponse.prototype.getCallRecord = function() {
3664
3664
  return /** @type{?proto.wechaty.puppet.CallRecordPayload} */ (
3665
3665
  jspb.Message.getWrapperField(this, wechaty_puppet_call_pb.CallRecordPayload, 1));
3666
3666
  };
@@ -3670,7 +3670,7 @@ proto.wechaty.puppet.MessageCallRecordlResponse.prototype.getChannel = function(
3670
3670
  * @param {?proto.wechaty.puppet.CallRecordPayload|undefined} value
3671
3671
  * @return {!proto.wechaty.puppet.MessageCallRecordlResponse} returns this
3672
3672
  */
3673
- proto.wechaty.puppet.MessageCallRecordlResponse.prototype.setChannel = function(value) {
3673
+ proto.wechaty.puppet.MessageCallRecordlResponse.prototype.setCallRecord = function(value) {
3674
3674
  return jspb.Message.setWrapperField(this, 1, value);
3675
3675
  };
3676
3676
 
@@ -3679,8 +3679,8 @@ proto.wechaty.puppet.MessageCallRecordlResponse.prototype.setChannel = function(
3679
3679
  * Clears the message field making it undefined.
3680
3680
  * @return {!proto.wechaty.puppet.MessageCallRecordlResponse} returns this
3681
3681
  */
3682
- proto.wechaty.puppet.MessageCallRecordlResponse.prototype.clearChannel = function() {
3683
- return this.setChannel(undefined);
3682
+ proto.wechaty.puppet.MessageCallRecordlResponse.prototype.clearCallRecord = function() {
3683
+ return this.setCallRecord(undefined);
3684
3684
  };
3685
3685
 
3686
3686
 
@@ -3688,7 +3688,7 @@ proto.wechaty.puppet.MessageCallRecordlResponse.prototype.clearChannel = functio
3688
3688
  * Returns whether this field is set.
3689
3689
  * @return {boolean}
3690
3690
  */
3691
- proto.wechaty.puppet.MessageCallRecordlResponse.prototype.hasChannel = function() {
3691
+ proto.wechaty.puppet.MessageCallRecordlResponse.prototype.hasCallRecord = function() {
3692
3692
  return jspb.Message.getField(this, 1) != null;
3693
3693
  };
3694
3694
 
@@ -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.64
12
+ version: 1.0.65
13
13
  contact:
14
14
  name: Wechaty
15
15
  url: https://github.com/wechaty/openapi
@@ -2998,7 +2998,7 @@ definitions:
2998
2998
  puppetMessageCallRecordlResponse:
2999
2999
  type: object
3000
3000
  properties:
3001
- channel:
3001
+ callRecord:
3002
3002
  $ref: '#/definitions/puppetCallRecordPayload'
3003
3003
  puppetMessageChannelResponse:
3004
3004
  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.64",
6
+ "version": "1.0.65",
7
7
  "contact": {
8
8
  "name": "Wechaty",
9
9
  "url": "https://github.com/wechaty/openapi",
@@ -4332,7 +4332,7 @@
4332
4332
  "puppetMessageCallRecordlResponse": {
4333
4333
  "type": "object",
4334
4334
  "properties": {
4335
- "channel": {
4335
+ "callRecord": {
4336
4336
  "$ref": "#/definitions/puppetCallRecordPayload"
4337
4337
  }
4338
4338
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juzi/wechaty-grpc",
3
- "version": "1.0.64",
3
+ "version": "1.0.65",
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.64",
7
+ "version": "1.0.65",
8
8
  "description": "gRPC for Wechaty",
9
9
  "type": "module",
10
10
  "exports": {