@juzi/wechaty-grpc 1.0.78 → 1.0.79

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.
@@ -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.78
12
+ version: 1.0.79
13
13
  contact:
14
14
  name: Wechaty
15
15
  url: https://github.com/wechaty/openapi
@@ -4154,15 +4154,24 @@ definitions:
4154
4154
  puppetTagTagAddRequest:
4155
4155
  type: object
4156
4156
  properties:
4157
- tagName:
4157
+ deprecatedTagName:
4158
4158
  type: string
4159
4159
  tagGroupId:
4160
4160
  type: string
4161
+ tagName:
4162
+ type: array
4163
+ items:
4164
+ type: string
4161
4165
  puppetTagTagAddResponse:
4162
4166
  type: object
4163
4167
  properties:
4164
- tagId:
4168
+ deprecatedTagId:
4165
4169
  type: string
4170
+ tagInfo:
4171
+ type: array
4172
+ items:
4173
+ type: object
4174
+ $ref: '#/definitions/puppetTagTagInfo'
4166
4175
  puppetTagTagContactListResponse:
4167
4176
  type: object
4168
4177
  properties:
@@ -4173,10 +4182,21 @@ definitions:
4173
4182
  puppetTagTagDeleteRequest:
4174
4183
  type: object
4175
4184
  properties:
4176
- tagId:
4185
+ deprecatedTagId:
4177
4186
  type: string
4187
+ tagId:
4188
+ type: array
4189
+ items:
4190
+ type: string
4178
4191
  puppetTagTagDeleteResponse:
4179
4192
  type: object
4193
+ puppetTagTagInfo:
4194
+ type: object
4195
+ properties:
4196
+ tagId:
4197
+ type: string
4198
+ tagName:
4199
+ type: string
4180
4200
  puppetTagTagListResponse:
4181
4201
  type: object
4182
4202
  properties:
@@ -4187,17 +4207,27 @@ definitions:
4187
4207
  puppetTagTagModifyRequest:
4188
4208
  type: object
4189
4209
  properties:
4190
- tagId:
4210
+ deprecatedTagId:
4191
4211
  type: string
4192
- tagNewName:
4212
+ deprecatedTagNewName:
4193
4213
  type: string
4214
+ tagNewInfo:
4215
+ type: array
4216
+ items:
4217
+ type: object
4218
+ $ref: '#/definitions/puppetTagTagInfo'
4194
4219
  puppetTagTagModifyResponse:
4195
4220
  type: object
4196
4221
  properties:
4197
- tagId:
4222
+ deprecatedTagId:
4198
4223
  type: string
4199
- tagName:
4224
+ deprecatedTagName:
4200
4225
  type: string
4226
+ tagInfo:
4227
+ type: array
4228
+ items:
4229
+ type: object
4230
+ $ref: '#/definitions/puppetTagTagInfo'
4201
4231
  puppetTagType:
4202
4232
  type: string
4203
4233
  enum:
@@ -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.78",
6
+ "version": "1.0.79",
7
7
  "contact": {
8
8
  "name": "Wechaty",
9
9
  "url": "https://github.com/wechaty/openapi",
@@ -5920,19 +5920,32 @@
5920
5920
  "puppetTagTagAddRequest": {
5921
5921
  "type": "object",
5922
5922
  "properties": {
5923
- "tagName": {
5923
+ "deprecatedTagName": {
5924
5924
  "type": "string"
5925
5925
  },
5926
5926
  "tagGroupId": {
5927
5927
  "type": "string"
5928
+ },
5929
+ "tagName": {
5930
+ "type": "array",
5931
+ "items": {
5932
+ "type": "string"
5933
+ }
5928
5934
  }
5929
5935
  }
5930
5936
  },
5931
5937
  "puppetTagTagAddResponse": {
5932
5938
  "type": "object",
5933
5939
  "properties": {
5934
- "tagId": {
5940
+ "deprecatedTagId": {
5935
5941
  "type": "string"
5942
+ },
5943
+ "tagInfo": {
5944
+ "type": "array",
5945
+ "items": {
5946
+ "type": "object",
5947
+ "$ref": "#/definitions/puppetTagTagInfo"
5948
+ }
5936
5949
  }
5937
5950
  }
5938
5951
  },
@@ -5950,14 +5963,31 @@
5950
5963
  "puppetTagTagDeleteRequest": {
5951
5964
  "type": "object",
5952
5965
  "properties": {
5953
- "tagId": {
5966
+ "deprecatedTagId": {
5954
5967
  "type": "string"
5968
+ },
5969
+ "tagId": {
5970
+ "type": "array",
5971
+ "items": {
5972
+ "type": "string"
5973
+ }
5955
5974
  }
5956
5975
  }
5957
5976
  },
5958
5977
  "puppetTagTagDeleteResponse": {
5959
5978
  "type": "object"
5960
5979
  },
5980
+ "puppetTagTagInfo": {
5981
+ "type": "object",
5982
+ "properties": {
5983
+ "tagId": {
5984
+ "type": "string"
5985
+ },
5986
+ "tagName": {
5987
+ "type": "string"
5988
+ }
5989
+ }
5990
+ },
5961
5991
  "puppetTagTagListResponse": {
5962
5992
  "type": "object",
5963
5993
  "properties": {
@@ -5972,22 +6002,36 @@
5972
6002
  "puppetTagTagModifyRequest": {
5973
6003
  "type": "object",
5974
6004
  "properties": {
5975
- "tagId": {
6005
+ "deprecatedTagId": {
5976
6006
  "type": "string"
5977
6007
  },
5978
- "tagNewName": {
6008
+ "deprecatedTagNewName": {
5979
6009
  "type": "string"
6010
+ },
6011
+ "tagNewInfo": {
6012
+ "type": "array",
6013
+ "items": {
6014
+ "type": "object",
6015
+ "$ref": "#/definitions/puppetTagTagInfo"
6016
+ }
5980
6017
  }
5981
6018
  }
5982
6019
  },
5983
6020
  "puppetTagTagModifyResponse": {
5984
6021
  "type": "object",
5985
6022
  "properties": {
5986
- "tagId": {
6023
+ "deprecatedTagId": {
5987
6024
  "type": "string"
5988
6025
  },
5989
- "tagName": {
6026
+ "deprecatedTagName": {
5990
6027
  "type": "string"
6028
+ },
6029
+ "tagInfo": {
6030
+ "type": "array",
6031
+ "items": {
6032
+ "type": "object",
6033
+ "$ref": "#/definitions/puppetTagTagInfo"
6034
+ }
5991
6035
  }
5992
6036
  }
5993
6037
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juzi/wechaty-grpc",
3
- "version": "1.0.78",
3
+ "version": "1.0.79",
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.78",
7
+ "version": "1.0.79",
8
8
  "description": "gRPC for Wechaty",
9
9
  "type": "module",
10
10
  "exports": {