@juzi/wechaty-grpc 1.0.50 → 1.0.52
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.
- package/dist/cjs/out/wechaty/puppet/contact_pb.d.ts +46 -0
- package/dist/cjs/out/wechaty/puppet/contact_pb.js +454 -52
- package/dist/cjs/out/wechaty/puppet.openapi.yaml +14 -1
- package/dist/cjs/out/wechaty/puppet.swagger.json +12 -1
- package/dist/cjs/proto/wechaty/puppet/contact.proto +27 -19
- package/dist/cjs/src/package-json.js +1 -1
- package/dist/esm/out/wechaty/puppet/contact_pb.d.ts +46 -0
- package/dist/esm/out/wechaty/puppet/contact_pb.js +454 -52
- package/dist/esm/out/wechaty/puppet.openapi.yaml +14 -1
- package/dist/esm/out/wechaty/puppet.swagger.json +12 -1
- package/dist/esm/proto/wechaty/puppet/contact.proto +27 -19
- package/dist/esm/src/package-json.js +1 -1
- package/out/wechaty/puppet/contact_pb.d.ts +46 -0
- package/out/wechaty/puppet/contact_pb.js +454 -52
- package/out/wechaty/puppet.openapi.yaml +14 -1
- package/out/wechaty/puppet.swagger.json +12 -1
- package/package.json +1 -1
- package/src/package-json.ts +1 -1
|
@@ -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.
|
|
12
|
+
version: 1.0.52
|
|
13
13
|
contact:
|
|
14
14
|
name: Wechaty
|
|
15
15
|
url: 'https://github.com/wechaty/openapi'
|
|
@@ -428,6 +428,15 @@ paths:
|
|
|
428
428
|
items:
|
|
429
429
|
type: string
|
|
430
430
|
title: 标签(的id)
|
|
431
|
+
clearPhones:
|
|
432
|
+
type: boolean
|
|
433
|
+
description: |-
|
|
434
|
+
*
|
|
435
|
+
The protobuf encoding doesn't distinguish between these two cases. (undefined vs [])
|
|
436
|
+
Since protobuf is language-agnostic,
|
|
437
|
+
it doesn't understand the conceptual nuance of "undefined" versus "[]" of Javascript.
|
|
438
|
+
clearTagIds:
|
|
439
|
+
type: boolean
|
|
431
440
|
tags:
|
|
432
441
|
- Puppet
|
|
433
442
|
'/conversation/{conversationId}/read':
|
|
@@ -2612,6 +2621,7 @@ definitions:
|
|
|
2612
2621
|
detail:
|
|
2613
2622
|
type: array
|
|
2614
2623
|
items:
|
|
2624
|
+
type: object
|
|
2615
2625
|
$ref: '#/definitions/puppetBroadcastTarget'
|
|
2616
2626
|
puppetGetMessageBroadcastTargetResponse:
|
|
2617
2627
|
type: object
|
|
@@ -3017,6 +3027,7 @@ definitions:
|
|
|
3017
3027
|
sayableList:
|
|
3018
3028
|
type: array
|
|
3019
3029
|
items:
|
|
3030
|
+
type: object
|
|
3020
3031
|
$ref: '#/definitions/puppetPostSayable'
|
|
3021
3032
|
visibleList:
|
|
3022
3033
|
type: array
|
|
@@ -3060,6 +3071,7 @@ definitions:
|
|
|
3060
3071
|
sayableList:
|
|
3061
3072
|
type: array
|
|
3062
3073
|
items:
|
|
3074
|
+
type: object
|
|
3063
3075
|
$ref: '#/definitions/puppetPostSayable'
|
|
3064
3076
|
contactId:
|
|
3065
3077
|
type: string
|
|
@@ -3532,5 +3544,6 @@ definitions:
|
|
|
3532
3544
|
details:
|
|
3533
3545
|
type: array
|
|
3534
3546
|
items:
|
|
3547
|
+
type: object
|
|
3535
3548
|
$ref: '#/definitions/protobufAny'
|
|
3536
3549
|
|
|
@@ -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.
|
|
6
|
+
"version": "1.0.52",
|
|
7
7
|
"contact": {
|
|
8
8
|
"name": "Wechaty",
|
|
9
9
|
"url": "https://github.com/wechaty/openapi",
|
|
@@ -626,6 +626,13 @@
|
|
|
626
626
|
"type": "string"
|
|
627
627
|
},
|
|
628
628
|
"title": "标签(的id)"
|
|
629
|
+
},
|
|
630
|
+
"clearPhones": {
|
|
631
|
+
"type": "boolean",
|
|
632
|
+
"description": "*\n The protobuf encoding doesn't distinguish between these two cases. (undefined vs [])\n Since protobuf is language-agnostic,\n it doesn't understand the conceptual nuance of \"undefined\" versus \"[]\" of Javascript."
|
|
633
|
+
},
|
|
634
|
+
"clearTagIds": {
|
|
635
|
+
"type": "boolean"
|
|
629
636
|
}
|
|
630
637
|
}
|
|
631
638
|
}
|
|
@@ -3779,6 +3786,7 @@
|
|
|
3779
3786
|
"detail": {
|
|
3780
3787
|
"type": "array",
|
|
3781
3788
|
"items": {
|
|
3789
|
+
"type": "object",
|
|
3782
3790
|
"$ref": "#/definitions/puppetBroadcastTarget"
|
|
3783
3791
|
}
|
|
3784
3792
|
}
|
|
@@ -4267,6 +4275,7 @@
|
|
|
4267
4275
|
"sayableList": {
|
|
4268
4276
|
"type": "array",
|
|
4269
4277
|
"items": {
|
|
4278
|
+
"type": "object",
|
|
4270
4279
|
"$ref": "#/definitions/puppetPostSayable"
|
|
4271
4280
|
}
|
|
4272
4281
|
},
|
|
@@ -4333,6 +4342,7 @@
|
|
|
4333
4342
|
"sayableList": {
|
|
4334
4343
|
"type": "array",
|
|
4335
4344
|
"items": {
|
|
4345
|
+
"type": "object",
|
|
4336
4346
|
"$ref": "#/definitions/puppetPostSayable"
|
|
4337
4347
|
}
|
|
4338
4348
|
},
|
|
@@ -5004,6 +5014,7 @@
|
|
|
5004
5014
|
"details": {
|
|
5005
5015
|
"type": "array",
|
|
5006
5016
|
"items": {
|
|
5017
|
+
"type": "object",
|
|
5007
5018
|
"$ref": "#/definitions/protobufAny"
|
|
5008
5019
|
}
|
|
5009
5020
|
}
|
package/package.json
CHANGED
package/src/package-json.ts
CHANGED