@juzi/wechaty-grpc 1.0.16 → 1.0.17

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.
@@ -594,8 +594,9 @@ export namespace TagPayloadResponse {
594
594
  }
595
595
 
596
596
  export interface TagTypeMap {
597
- PERSONAL: 0;
598
- CORPORATION: 1;
597
+ UNSPECIFIC: 0;
598
+ PERSONAL: 1;
599
+ CORPORATION: 2;
599
600
  }
600
601
 
601
602
  export const TagType: TagTypeMap;
@@ -4604,8 +4604,9 @@ proto.wechaty.puppet.TagPayloadResponse.prototype.hasPayload = function() {
4604
4604
  * @enum {number}
4605
4605
  */
4606
4606
  proto.wechaty.puppet.TagType = {
4607
- PERSONAL: 0,
4608
- CORPORATION: 1
4607
+ UNSPECIFIC: 0,
4608
+ PERSONAL: 1,
4609
+ CORPORATION: 2
4609
4610
  };
4610
4611
 
4611
4612
  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.16
12
+ version: 1.0.17
13
13
  contact:
14
14
  name: Wechaty
15
15
  url: 'https://github.com/wechaty/openapi'
@@ -2788,9 +2788,10 @@ definitions:
2788
2788
  puppetTagType:
2789
2789
  type: string
2790
2790
  enum:
2791
+ - Unspecific
2791
2792
  - PERSONAL
2792
2793
  - CORPORATION
2793
- default: PERSONAL
2794
+ default: Unspecific
2794
2795
  puppetUploadRequest:
2795
2796
  type: object
2796
2797
  properties:
@@ -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.16",
6
+ "version": "1.0.17",
7
7
  "contact": {
8
8
  "name": "Wechaty",
9
9
  "url": "https://github.com/wechaty/openapi",
@@ -4041,10 +4041,11 @@
4041
4041
  "puppetTagType": {
4042
4042
  "type": "string",
4043
4043
  "enum": [
4044
+ "Unspecific",
4044
4045
  "PERSONAL",
4045
4046
  "CORPORATION"
4046
4047
  ],
4047
- "default": "PERSONAL"
4048
+ "default": "Unspecific"
4048
4049
  },
4049
4050
  "puppetUploadRequest": {
4050
4051
  "type": "object",
@@ -6,8 +6,9 @@ option java_package = "io.github.wechaty.grpc.puppet";
6
6
  option csharp_namespace = "github.wechaty.grpc.puppet";
7
7
 
8
8
  enum TagType {
9
- PERSONAL = 0;
10
- CORPORATION = 1;
9
+ Unspecific = 0;
10
+ PERSONAL = 1;
11
+ CORPORATION = 2;
11
12
  }
12
13
 
13
14
  message TagPayload {
@@ -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.16",
6
+ "version": "1.0.17",
7
7
  "description": "gRPC for Wechaty",
8
8
  "type": "module",
9
9
  "exports": {
@@ -594,8 +594,9 @@ export namespace TagPayloadResponse {
594
594
  }
595
595
 
596
596
  export interface TagTypeMap {
597
- PERSONAL: 0;
598
- CORPORATION: 1;
597
+ UNSPECIFIC: 0;
598
+ PERSONAL: 1;
599
+ CORPORATION: 2;
599
600
  }
600
601
 
601
602
  export const TagType: TagTypeMap;
@@ -4604,8 +4604,9 @@ proto.wechaty.puppet.TagPayloadResponse.prototype.hasPayload = function() {
4604
4604
  * @enum {number}
4605
4605
  */
4606
4606
  proto.wechaty.puppet.TagType = {
4607
- PERSONAL: 0,
4608
- CORPORATION: 1
4607
+ UNSPECIFIC: 0,
4608
+ PERSONAL: 1,
4609
+ CORPORATION: 2
4609
4610
  };
4610
4611
 
4611
4612
  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.16
12
+ version: 1.0.17
13
13
  contact:
14
14
  name: Wechaty
15
15
  url: 'https://github.com/wechaty/openapi'
@@ -2788,9 +2788,10 @@ definitions:
2788
2788
  puppetTagType:
2789
2789
  type: string
2790
2790
  enum:
2791
+ - Unspecific
2791
2792
  - PERSONAL
2792
2793
  - CORPORATION
2793
- default: PERSONAL
2794
+ default: Unspecific
2794
2795
  puppetUploadRequest:
2795
2796
  type: object
2796
2797
  properties:
@@ -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.16",
6
+ "version": "1.0.17",
7
7
  "contact": {
8
8
  "name": "Wechaty",
9
9
  "url": "https://github.com/wechaty/openapi",
@@ -4041,10 +4041,11 @@
4041
4041
  "puppetTagType": {
4042
4042
  "type": "string",
4043
4043
  "enum": [
4044
+ "Unspecific",
4044
4045
  "PERSONAL",
4045
4046
  "CORPORATION"
4046
4047
  ],
4047
- "default": "PERSONAL"
4048
+ "default": "Unspecific"
4048
4049
  },
4049
4050
  "puppetUploadRequest": {
4050
4051
  "type": "object",
@@ -6,8 +6,9 @@ option java_package = "io.github.wechaty.grpc.puppet";
6
6
  option csharp_namespace = "github.wechaty.grpc.puppet";
7
7
 
8
8
  enum TagType {
9
- PERSONAL = 0;
10
- CORPORATION = 1;
9
+ Unspecific = 0;
10
+ PERSONAL = 1;
11
+ CORPORATION = 2;
11
12
  }
12
13
 
13
14
  message TagPayload {
@@ -1,6 +1,6 @@
1
1
  export const packageJson = {
2
2
  "name": "@juzi/wechaty-grpc",
3
- "version": "1.0.16",
3
+ "version": "1.0.17",
4
4
  "description": "gRPC for Wechaty",
5
5
  "type": "module",
6
6
  "exports": {
@@ -594,8 +594,9 @@ export namespace TagPayloadResponse {
594
594
  }
595
595
 
596
596
  export interface TagTypeMap {
597
- PERSONAL: 0;
598
- CORPORATION: 1;
597
+ UNSPECIFIC: 0;
598
+ PERSONAL: 1;
599
+ CORPORATION: 2;
599
600
  }
600
601
 
601
602
  export const TagType: TagTypeMap;
@@ -4604,8 +4604,9 @@ proto.wechaty.puppet.TagPayloadResponse.prototype.hasPayload = function() {
4604
4604
  * @enum {number}
4605
4605
  */
4606
4606
  proto.wechaty.puppet.TagType = {
4607
- PERSONAL: 0,
4608
- CORPORATION: 1
4607
+ UNSPECIFIC: 0,
4608
+ PERSONAL: 1,
4609
+ CORPORATION: 2
4609
4610
  };
4610
4611
 
4611
4612
  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.16
12
+ version: 1.0.17
13
13
  contact:
14
14
  name: Wechaty
15
15
  url: 'https://github.com/wechaty/openapi'
@@ -2788,9 +2788,10 @@ definitions:
2788
2788
  puppetTagType:
2789
2789
  type: string
2790
2790
  enum:
2791
+ - Unspecific
2791
2792
  - PERSONAL
2792
2793
  - CORPORATION
2793
- default: PERSONAL
2794
+ default: Unspecific
2794
2795
  puppetUploadRequest:
2795
2796
  type: object
2796
2797
  properties:
@@ -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.16",
6
+ "version": "1.0.17",
7
7
  "contact": {
8
8
  "name": "Wechaty",
9
9
  "url": "https://github.com/wechaty/openapi",
@@ -4041,10 +4041,11 @@
4041
4041
  "puppetTagType": {
4042
4042
  "type": "string",
4043
4043
  "enum": [
4044
+ "Unspecific",
4044
4045
  "PERSONAL",
4045
4046
  "CORPORATION"
4046
4047
  ],
4047
- "default": "PERSONAL"
4048
+ "default": "Unspecific"
4048
4049
  },
4049
4050
  "puppetUploadRequest": {
4050
4051
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juzi/wechaty-grpc",
3
- "version": "1.0.16",
3
+ "version": "1.0.17",
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.16",
7
+ "version": "1.0.17",
8
8
  "description": "gRPC for Wechaty",
9
9
  "type": "module",
10
10
  "exports": {