@juzi/wechaty-grpc 1.0.72 → 1.0.73

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.
@@ -54,10 +54,10 @@ export namespace GetContactExternalUserIdRequest {
54
54
  }
55
55
 
56
56
  export class GetContactExternalUserIdResponse extends jspb.Message {
57
- clearContactExternalUserIdParisList(): void;
58
- getContactExternalUserIdParisList(): Array<ContactExternalUserIdPair>;
59
- setContactExternalUserIdParisList(value: Array<ContactExternalUserIdPair>): void;
60
- addContactExternalUserIdParis(value?: ContactExternalUserIdPair, index?: number): ContactExternalUserIdPair;
57
+ clearContactExternalUserIdPairsList(): void;
58
+ getContactExternalUserIdPairsList(): Array<ContactExternalUserIdPair>;
59
+ setContactExternalUserIdPairsList(value: Array<ContactExternalUserIdPair>): void;
60
+ addContactExternalUserIdPairs(value?: ContactExternalUserIdPair, index?: number): ContactExternalUserIdPair;
61
61
 
62
62
  serializeBinary(): Uint8Array;
63
63
  toObject(includeInstance?: boolean): GetContactExternalUserIdResponse.AsObject;
@@ -71,7 +71,7 @@ export class GetContactExternalUserIdResponse extends jspb.Message {
71
71
 
72
72
  export namespace GetContactExternalUserIdResponse {
73
73
  export type AsObject = {
74
- contactExternalUserIdParisList: Array<ContactExternalUserIdPair.AsObject>,
74
+ contactExternalUserIdPairsList: Array<ContactExternalUserIdPair.AsObject>,
75
75
  }
76
76
  }
77
77
 
@@ -466,7 +466,7 @@ proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.toObject = funct
466
466
  */
467
467
  proto.wechaty.puppet.GetContactExternalUserIdResponse.toObject = function(includeInstance, msg) {
468
468
  var f, obj = {
469
- contactExternalUserIdParisList: jspb.Message.toObjectList(msg.getContactExternalUserIdParisList(),
469
+ contactExternalUserIdPairsList: jspb.Message.toObjectList(msg.getContactExternalUserIdPairsList(),
470
470
  proto.wechaty.puppet.ContactExternalUserIdPair.toObject, includeInstance)
471
471
  };
472
472
 
@@ -507,7 +507,7 @@ proto.wechaty.puppet.GetContactExternalUserIdResponse.deserializeBinaryFromReade
507
507
  case 1:
508
508
  var value = new proto.wechaty.puppet.ContactExternalUserIdPair;
509
509
  reader.readMessage(value,proto.wechaty.puppet.ContactExternalUserIdPair.deserializeBinaryFromReader);
510
- msg.addContactExternalUserIdParis(value);
510
+ msg.addContactExternalUserIdPairs(value);
511
511
  break;
512
512
  default:
513
513
  reader.skipField();
@@ -538,7 +538,7 @@ proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.serializeBinary
538
538
  */
539
539
  proto.wechaty.puppet.GetContactExternalUserIdResponse.serializeBinaryToWriter = function(message, writer) {
540
540
  var f = undefined;
541
- f = message.getContactExternalUserIdParisList();
541
+ f = message.getContactExternalUserIdPairsList();
542
542
  if (f.length > 0) {
543
543
  writer.writeRepeatedMessage(
544
544
  1,
@@ -550,10 +550,10 @@ proto.wechaty.puppet.GetContactExternalUserIdResponse.serializeBinaryToWriter =
550
550
 
551
551
 
552
552
  /**
553
- * repeated ContactExternalUserIdPair contact_external_user_id_paris = 1;
553
+ * repeated ContactExternalUserIdPair contact_external_user_id_pairs = 1;
554
554
  * @return {!Array<!proto.wechaty.puppet.ContactExternalUserIdPair>}
555
555
  */
556
- proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.getContactExternalUserIdParisList = function() {
556
+ proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.getContactExternalUserIdPairsList = function() {
557
557
  return /** @type{!Array<!proto.wechaty.puppet.ContactExternalUserIdPair>} */ (
558
558
  jspb.Message.getRepeatedWrapperField(this, proto.wechaty.puppet.ContactExternalUserIdPair, 1));
559
559
  };
@@ -563,7 +563,7 @@ proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.getContactExtern
563
563
  * @param {!Array<!proto.wechaty.puppet.ContactExternalUserIdPair>} value
564
564
  * @return {!proto.wechaty.puppet.GetContactExternalUserIdResponse} returns this
565
565
  */
566
- proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.setContactExternalUserIdParisList = function(value) {
566
+ proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.setContactExternalUserIdPairsList = function(value) {
567
567
  return jspb.Message.setRepeatedWrapperField(this, 1, value);
568
568
  };
569
569
 
@@ -573,7 +573,7 @@ proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.setContactExtern
573
573
  * @param {number=} opt_index
574
574
  * @return {!proto.wechaty.puppet.ContactExternalUserIdPair}
575
575
  */
576
- proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.addContactExternalUserIdParis = function(opt_value, opt_index) {
576
+ proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.addContactExternalUserIdPairs = function(opt_value, opt_index) {
577
577
  return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.wechaty.puppet.ContactExternalUserIdPair, opt_index);
578
578
  };
579
579
 
@@ -582,8 +582,8 @@ proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.addContactExtern
582
582
  * Clears the list making it empty but non-null.
583
583
  * @return {!proto.wechaty.puppet.GetContactExternalUserIdResponse} returns this
584
584
  */
585
- proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.clearContactExternalUserIdParisList = function() {
586
- return this.setContactExternalUserIdParisList([]);
585
+ proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.clearContactExternalUserIdPairsList = function() {
586
+ return this.setContactExternalUserIdPairsList([]);
587
587
  };
588
588
 
589
589
 
@@ -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.72
12
+ version: 1.0.73
13
13
  contact:
14
14
  name: Wechaty
15
15
  url: https://github.com/wechaty/openapi
@@ -3123,7 +3123,7 @@ definitions:
3123
3123
  puppetGetContactExternalUserIdResponse:
3124
3124
  type: object
3125
3125
  properties:
3126
- contactExternalUserIdParis:
3126
+ contactExternalUserIdPairs:
3127
3127
  type: array
3128
3128
  items:
3129
3129
  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.72",
6
+ "version": "1.0.73",
7
7
  "contact": {
8
8
  "name": "Wechaty",
9
9
  "url": "https://github.com/wechaty/openapi",
@@ -4515,7 +4515,7 @@
4515
4515
  "puppetGetContactExternalUserIdResponse": {
4516
4516
  "type": "object",
4517
4517
  "properties": {
4518
- "contactExternalUserIdParis": {
4518
+ "contactExternalUserIdPairs": {
4519
4519
  "type": "array",
4520
4520
  "items": {
4521
4521
  "type": "object",
@@ -16,5 +16,5 @@ message GetContactExternalUserIdRequest {
16
16
  }
17
17
 
18
18
  message GetContactExternalUserIdResponse {
19
- repeated ContactExternalUserIdPair contact_external_user_id_paris = 1;
19
+ repeated ContactExternalUserIdPair contact_external_user_id_pairs = 1;
20
20
  }
@@ -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.72",
6
+ "version": "1.0.73",
7
7
  "description": "gRPC for Wechaty",
8
8
  "type": "module",
9
9
  "exports": {
@@ -54,10 +54,10 @@ export namespace GetContactExternalUserIdRequest {
54
54
  }
55
55
 
56
56
  export class GetContactExternalUserIdResponse extends jspb.Message {
57
- clearContactExternalUserIdParisList(): void;
58
- getContactExternalUserIdParisList(): Array<ContactExternalUserIdPair>;
59
- setContactExternalUserIdParisList(value: Array<ContactExternalUserIdPair>): void;
60
- addContactExternalUserIdParis(value?: ContactExternalUserIdPair, index?: number): ContactExternalUserIdPair;
57
+ clearContactExternalUserIdPairsList(): void;
58
+ getContactExternalUserIdPairsList(): Array<ContactExternalUserIdPair>;
59
+ setContactExternalUserIdPairsList(value: Array<ContactExternalUserIdPair>): void;
60
+ addContactExternalUserIdPairs(value?: ContactExternalUserIdPair, index?: number): ContactExternalUserIdPair;
61
61
 
62
62
  serializeBinary(): Uint8Array;
63
63
  toObject(includeInstance?: boolean): GetContactExternalUserIdResponse.AsObject;
@@ -71,7 +71,7 @@ export class GetContactExternalUserIdResponse extends jspb.Message {
71
71
 
72
72
  export namespace GetContactExternalUserIdResponse {
73
73
  export type AsObject = {
74
- contactExternalUserIdParisList: Array<ContactExternalUserIdPair.AsObject>,
74
+ contactExternalUserIdPairsList: Array<ContactExternalUserIdPair.AsObject>,
75
75
  }
76
76
  }
77
77
 
@@ -466,7 +466,7 @@ proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.toObject = funct
466
466
  */
467
467
  proto.wechaty.puppet.GetContactExternalUserIdResponse.toObject = function(includeInstance, msg) {
468
468
  var f, obj = {
469
- contactExternalUserIdParisList: jspb.Message.toObjectList(msg.getContactExternalUserIdParisList(),
469
+ contactExternalUserIdPairsList: jspb.Message.toObjectList(msg.getContactExternalUserIdPairsList(),
470
470
  proto.wechaty.puppet.ContactExternalUserIdPair.toObject, includeInstance)
471
471
  };
472
472
 
@@ -507,7 +507,7 @@ proto.wechaty.puppet.GetContactExternalUserIdResponse.deserializeBinaryFromReade
507
507
  case 1:
508
508
  var value = new proto.wechaty.puppet.ContactExternalUserIdPair;
509
509
  reader.readMessage(value,proto.wechaty.puppet.ContactExternalUserIdPair.deserializeBinaryFromReader);
510
- msg.addContactExternalUserIdParis(value);
510
+ msg.addContactExternalUserIdPairs(value);
511
511
  break;
512
512
  default:
513
513
  reader.skipField();
@@ -538,7 +538,7 @@ proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.serializeBinary
538
538
  */
539
539
  proto.wechaty.puppet.GetContactExternalUserIdResponse.serializeBinaryToWriter = function(message, writer) {
540
540
  var f = undefined;
541
- f = message.getContactExternalUserIdParisList();
541
+ f = message.getContactExternalUserIdPairsList();
542
542
  if (f.length > 0) {
543
543
  writer.writeRepeatedMessage(
544
544
  1,
@@ -550,10 +550,10 @@ proto.wechaty.puppet.GetContactExternalUserIdResponse.serializeBinaryToWriter =
550
550
 
551
551
 
552
552
  /**
553
- * repeated ContactExternalUserIdPair contact_external_user_id_paris = 1;
553
+ * repeated ContactExternalUserIdPair contact_external_user_id_pairs = 1;
554
554
  * @return {!Array<!proto.wechaty.puppet.ContactExternalUserIdPair>}
555
555
  */
556
- proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.getContactExternalUserIdParisList = function() {
556
+ proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.getContactExternalUserIdPairsList = function() {
557
557
  return /** @type{!Array<!proto.wechaty.puppet.ContactExternalUserIdPair>} */ (
558
558
  jspb.Message.getRepeatedWrapperField(this, proto.wechaty.puppet.ContactExternalUserIdPair, 1));
559
559
  };
@@ -563,7 +563,7 @@ proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.getContactExtern
563
563
  * @param {!Array<!proto.wechaty.puppet.ContactExternalUserIdPair>} value
564
564
  * @return {!proto.wechaty.puppet.GetContactExternalUserIdResponse} returns this
565
565
  */
566
- proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.setContactExternalUserIdParisList = function(value) {
566
+ proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.setContactExternalUserIdPairsList = function(value) {
567
567
  return jspb.Message.setRepeatedWrapperField(this, 1, value);
568
568
  };
569
569
 
@@ -573,7 +573,7 @@ proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.setContactExtern
573
573
  * @param {number=} opt_index
574
574
  * @return {!proto.wechaty.puppet.ContactExternalUserIdPair}
575
575
  */
576
- proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.addContactExternalUserIdParis = function(opt_value, opt_index) {
576
+ proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.addContactExternalUserIdPairs = function(opt_value, opt_index) {
577
577
  return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.wechaty.puppet.ContactExternalUserIdPair, opt_index);
578
578
  };
579
579
 
@@ -582,8 +582,8 @@ proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.addContactExtern
582
582
  * Clears the list making it empty but non-null.
583
583
  * @return {!proto.wechaty.puppet.GetContactExternalUserIdResponse} returns this
584
584
  */
585
- proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.clearContactExternalUserIdParisList = function() {
586
- return this.setContactExternalUserIdParisList([]);
585
+ proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.clearContactExternalUserIdPairsList = function() {
586
+ return this.setContactExternalUserIdPairsList([]);
587
587
  };
588
588
 
589
589
 
@@ -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.72
12
+ version: 1.0.73
13
13
  contact:
14
14
  name: Wechaty
15
15
  url: https://github.com/wechaty/openapi
@@ -3123,7 +3123,7 @@ definitions:
3123
3123
  puppetGetContactExternalUserIdResponse:
3124
3124
  type: object
3125
3125
  properties:
3126
- contactExternalUserIdParis:
3126
+ contactExternalUserIdPairs:
3127
3127
  type: array
3128
3128
  items:
3129
3129
  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.72",
6
+ "version": "1.0.73",
7
7
  "contact": {
8
8
  "name": "Wechaty",
9
9
  "url": "https://github.com/wechaty/openapi",
@@ -4515,7 +4515,7 @@
4515
4515
  "puppetGetContactExternalUserIdResponse": {
4516
4516
  "type": "object",
4517
4517
  "properties": {
4518
- "contactExternalUserIdParis": {
4518
+ "contactExternalUserIdPairs": {
4519
4519
  "type": "array",
4520
4520
  "items": {
4521
4521
  "type": "object",
@@ -16,5 +16,5 @@ message GetContactExternalUserIdRequest {
16
16
  }
17
17
 
18
18
  message GetContactExternalUserIdResponse {
19
- repeated ContactExternalUserIdPair contact_external_user_id_paris = 1;
19
+ repeated ContactExternalUserIdPair contact_external_user_id_pairs = 1;
20
20
  }
@@ -1,6 +1,6 @@
1
1
  export const packageJson = {
2
2
  "name": "@juzi/wechaty-grpc",
3
- "version": "1.0.72",
3
+ "version": "1.0.73",
4
4
  "description": "gRPC for Wechaty",
5
5
  "type": "module",
6
6
  "exports": {
@@ -54,10 +54,10 @@ export namespace GetContactExternalUserIdRequest {
54
54
  }
55
55
 
56
56
  export class GetContactExternalUserIdResponse extends jspb.Message {
57
- clearContactExternalUserIdParisList(): void;
58
- getContactExternalUserIdParisList(): Array<ContactExternalUserIdPair>;
59
- setContactExternalUserIdParisList(value: Array<ContactExternalUserIdPair>): void;
60
- addContactExternalUserIdParis(value?: ContactExternalUserIdPair, index?: number): ContactExternalUserIdPair;
57
+ clearContactExternalUserIdPairsList(): void;
58
+ getContactExternalUserIdPairsList(): Array<ContactExternalUserIdPair>;
59
+ setContactExternalUserIdPairsList(value: Array<ContactExternalUserIdPair>): void;
60
+ addContactExternalUserIdPairs(value?: ContactExternalUserIdPair, index?: number): ContactExternalUserIdPair;
61
61
 
62
62
  serializeBinary(): Uint8Array;
63
63
  toObject(includeInstance?: boolean): GetContactExternalUserIdResponse.AsObject;
@@ -71,7 +71,7 @@ export class GetContactExternalUserIdResponse extends jspb.Message {
71
71
 
72
72
  export namespace GetContactExternalUserIdResponse {
73
73
  export type AsObject = {
74
- contactExternalUserIdParisList: Array<ContactExternalUserIdPair.AsObject>,
74
+ contactExternalUserIdPairsList: Array<ContactExternalUserIdPair.AsObject>,
75
75
  }
76
76
  }
77
77
 
@@ -466,7 +466,7 @@ proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.toObject = funct
466
466
  */
467
467
  proto.wechaty.puppet.GetContactExternalUserIdResponse.toObject = function(includeInstance, msg) {
468
468
  var f, obj = {
469
- contactExternalUserIdParisList: jspb.Message.toObjectList(msg.getContactExternalUserIdParisList(),
469
+ contactExternalUserIdPairsList: jspb.Message.toObjectList(msg.getContactExternalUserIdPairsList(),
470
470
  proto.wechaty.puppet.ContactExternalUserIdPair.toObject, includeInstance)
471
471
  };
472
472
 
@@ -507,7 +507,7 @@ proto.wechaty.puppet.GetContactExternalUserIdResponse.deserializeBinaryFromReade
507
507
  case 1:
508
508
  var value = new proto.wechaty.puppet.ContactExternalUserIdPair;
509
509
  reader.readMessage(value,proto.wechaty.puppet.ContactExternalUserIdPair.deserializeBinaryFromReader);
510
- msg.addContactExternalUserIdParis(value);
510
+ msg.addContactExternalUserIdPairs(value);
511
511
  break;
512
512
  default:
513
513
  reader.skipField();
@@ -538,7 +538,7 @@ proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.serializeBinary
538
538
  */
539
539
  proto.wechaty.puppet.GetContactExternalUserIdResponse.serializeBinaryToWriter = function(message, writer) {
540
540
  var f = undefined;
541
- f = message.getContactExternalUserIdParisList();
541
+ f = message.getContactExternalUserIdPairsList();
542
542
  if (f.length > 0) {
543
543
  writer.writeRepeatedMessage(
544
544
  1,
@@ -550,10 +550,10 @@ proto.wechaty.puppet.GetContactExternalUserIdResponse.serializeBinaryToWriter =
550
550
 
551
551
 
552
552
  /**
553
- * repeated ContactExternalUserIdPair contact_external_user_id_paris = 1;
553
+ * repeated ContactExternalUserIdPair contact_external_user_id_pairs = 1;
554
554
  * @return {!Array<!proto.wechaty.puppet.ContactExternalUserIdPair>}
555
555
  */
556
- proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.getContactExternalUserIdParisList = function() {
556
+ proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.getContactExternalUserIdPairsList = function() {
557
557
  return /** @type{!Array<!proto.wechaty.puppet.ContactExternalUserIdPair>} */ (
558
558
  jspb.Message.getRepeatedWrapperField(this, proto.wechaty.puppet.ContactExternalUserIdPair, 1));
559
559
  };
@@ -563,7 +563,7 @@ proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.getContactExtern
563
563
  * @param {!Array<!proto.wechaty.puppet.ContactExternalUserIdPair>} value
564
564
  * @return {!proto.wechaty.puppet.GetContactExternalUserIdResponse} returns this
565
565
  */
566
- proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.setContactExternalUserIdParisList = function(value) {
566
+ proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.setContactExternalUserIdPairsList = function(value) {
567
567
  return jspb.Message.setRepeatedWrapperField(this, 1, value);
568
568
  };
569
569
 
@@ -573,7 +573,7 @@ proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.setContactExtern
573
573
  * @param {number=} opt_index
574
574
  * @return {!proto.wechaty.puppet.ContactExternalUserIdPair}
575
575
  */
576
- proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.addContactExternalUserIdParis = function(opt_value, opt_index) {
576
+ proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.addContactExternalUserIdPairs = function(opt_value, opt_index) {
577
577
  return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.wechaty.puppet.ContactExternalUserIdPair, opt_index);
578
578
  };
579
579
 
@@ -582,8 +582,8 @@ proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.addContactExtern
582
582
  * Clears the list making it empty but non-null.
583
583
  * @return {!proto.wechaty.puppet.GetContactExternalUserIdResponse} returns this
584
584
  */
585
- proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.clearContactExternalUserIdParisList = function() {
586
- return this.setContactExternalUserIdParisList([]);
585
+ proto.wechaty.puppet.GetContactExternalUserIdResponse.prototype.clearContactExternalUserIdPairsList = function() {
586
+ return this.setContactExternalUserIdPairsList([]);
587
587
  };
588
588
 
589
589
 
@@ -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.72
12
+ version: 1.0.73
13
13
  contact:
14
14
  name: Wechaty
15
15
  url: https://github.com/wechaty/openapi
@@ -3123,7 +3123,7 @@ definitions:
3123
3123
  puppetGetContactExternalUserIdResponse:
3124
3124
  type: object
3125
3125
  properties:
3126
- contactExternalUserIdParis:
3126
+ contactExternalUserIdPairs:
3127
3127
  type: array
3128
3128
  items:
3129
3129
  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.72",
6
+ "version": "1.0.73",
7
7
  "contact": {
8
8
  "name": "Wechaty",
9
9
  "url": "https://github.com/wechaty/openapi",
@@ -4515,7 +4515,7 @@
4515
4515
  "puppetGetContactExternalUserIdResponse": {
4516
4516
  "type": "object",
4517
4517
  "properties": {
4518
- "contactExternalUserIdParis": {
4518
+ "contactExternalUserIdPairs": {
4519
4519
  "type": "array",
4520
4520
  "items": {
4521
4521
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juzi/wechaty-grpc",
3
- "version": "1.0.72",
3
+ "version": "1.0.73",
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.72",
7
+ "version": "1.0.73",
8
8
  "description": "gRPC for Wechaty",
9
9
  "type": "module",
10
10
  "exports": {