@juzi/wechaty-grpc 1.0.77 → 1.0.78
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.openapi.yaml +2 -2
- package/dist/cjs/out/wechaty/puppet.swagger.json +2 -2
- package/dist/cjs/out/wechaty/puppet_grpc_pb.d.ts +3 -3
- package/dist/cjs/out/wechaty/puppet_grpc_pb.js +1 -1
- package/dist/cjs/out/wechaty/puppet_pb_service.d.ts +2 -2
- package/dist/cjs/out/wechaty/puppet_pb_service.js +3 -3
- package/dist/cjs/proto/wechaty/puppet.proto +1 -1
- package/dist/cjs/src/package-json.js +1 -1
- package/dist/esm/out/wechaty/puppet.openapi.yaml +2 -2
- package/dist/esm/out/wechaty/puppet.swagger.json +2 -2
- package/dist/esm/out/wechaty/puppet_grpc_pb.d.ts +3 -3
- package/dist/esm/out/wechaty/puppet_grpc_pb.js +1 -1
- package/dist/esm/out/wechaty/puppet_pb_service.d.ts +2 -2
- package/dist/esm/out/wechaty/puppet_pb_service.js +3 -3
- package/dist/esm/proto/wechaty/puppet.proto +1 -1
- package/dist/esm/src/package-json.js +1 -1
- package/out/wechaty/puppet.openapi.yaml +2 -2
- package/out/wechaty/puppet.swagger.json +2 -2
- package/out/wechaty/puppet_grpc_pb.d.ts +3 -3
- package/out/wechaty/puppet_grpc_pb.js +1 -1
- package/out/wechaty/puppet_pb_service.d.ts +2 -2
- package/out/wechaty/puppet_pb_service.js +3 -3
- 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.78
|
|
13
13
|
contact:
|
|
14
14
|
name: Wechaty
|
|
15
15
|
url: https://github.com/wechaty/openapi
|
|
@@ -2158,7 +2158,7 @@ paths:
|
|
|
2158
2158
|
- Puppet
|
|
2159
2159
|
/tag/modify:
|
|
2160
2160
|
post:
|
|
2161
|
-
operationId:
|
|
2161
|
+
operationId: Puppet_TagTagModify
|
|
2162
2162
|
responses:
|
|
2163
2163
|
'200':
|
|
2164
2164
|
description: A successful response.
|
|
@@ -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.78",
|
|
7
7
|
"contact": {
|
|
8
8
|
"name": "Wechaty",
|
|
9
9
|
"url": "https://github.com/wechaty/openapi",
|
|
@@ -3259,7 +3259,7 @@
|
|
|
3259
3259
|
},
|
|
3260
3260
|
"/tag/modify": {
|
|
3261
3261
|
"post": {
|
|
3262
|
-
"operationId": "
|
|
3262
|
+
"operationId": "Puppet_TagTagModify",
|
|
3263
3263
|
"responses": {
|
|
3264
3264
|
"200": {
|
|
3265
3265
|
"description": "A successful response.",
|
|
@@ -107,7 +107,7 @@ interface IPuppetService extends grpc.ServiceDefinition<grpc.UntypedServiceImple
|
|
|
107
107
|
tagGroupPayload: IPuppetService_ITagGroupPayload;
|
|
108
108
|
tagTagAdd: IPuppetService_ITagTagAdd;
|
|
109
109
|
tagTagDelete: IPuppetService_ITagTagDelete;
|
|
110
|
-
tagTagModify:
|
|
110
|
+
tagTagModify: IPuppetService_ITagTagModify;
|
|
111
111
|
tagPayload: IPuppetService_ITagPayload;
|
|
112
112
|
tagGroupList: IPuppetService_ITagGroupList;
|
|
113
113
|
tagGroupTagList: IPuppetService_ITagGroupTagList;
|
|
@@ -877,8 +877,8 @@ interface IPuppetService_ITagTagDelete extends grpc.MethodDefinition<wechaty_pup
|
|
|
877
877
|
responseSerialize: grpc.serialize<wechaty_puppet_tag_pb.TagTagDeleteResponse>;
|
|
878
878
|
responseDeserialize: grpc.deserialize<wechaty_puppet_tag_pb.TagTagDeleteResponse>;
|
|
879
879
|
}
|
|
880
|
-
interface
|
|
881
|
-
path: "/wechaty.Puppet/
|
|
880
|
+
interface IPuppetService_ITagTagModify extends grpc.MethodDefinition<wechaty_puppet_tag_pb.TagTagModifyRequest, wechaty_puppet_tag_pb.TagTagModifyResponse> {
|
|
881
|
+
path: "/wechaty.Puppet/TagTagModify";
|
|
882
882
|
requestStream: false;
|
|
883
883
|
responseStream: false;
|
|
884
884
|
requestSerialize: grpc.serialize<wechaty_puppet_tag_pb.TagTagModifyRequest>;
|
|
@@ -3232,7 +3232,7 @@ tagContactTagAdd: {
|
|
|
3232
3232
|
responseDeserialize: deserialize_wechaty_puppet_TagTagDeleteResponse,
|
|
3233
3233
|
},
|
|
3234
3234
|
tagTagModify: {
|
|
3235
|
-
path: '/wechaty.Puppet/
|
|
3235
|
+
path: '/wechaty.Puppet/TagTagModify',
|
|
3236
3236
|
requestStream: false,
|
|
3237
3237
|
responseStream: false,
|
|
3238
3238
|
requestType: wechaty_puppet_tag_pb.TagTagModifyRequest,
|
|
@@ -766,7 +766,7 @@ type PuppetTagTagDelete = {
|
|
|
766
766
|
readonly responseType: typeof wechaty_puppet_tag_pb.TagTagDeleteResponse;
|
|
767
767
|
};
|
|
768
768
|
|
|
769
|
-
type
|
|
769
|
+
type PuppetTagTagModify = {
|
|
770
770
|
readonly methodName: string;
|
|
771
771
|
readonly service: typeof Puppet;
|
|
772
772
|
readonly requestStream: false;
|
|
@@ -1040,7 +1040,7 @@ export class Puppet {
|
|
|
1040
1040
|
static readonly TagGroupPayload: PuppetTagGroupPayload;
|
|
1041
1041
|
static readonly TagTagAdd: PuppetTagTagAdd;
|
|
1042
1042
|
static readonly TagTagDelete: PuppetTagTagDelete;
|
|
1043
|
-
static readonly
|
|
1043
|
+
static readonly TagTagModify: PuppetTagTagModify;
|
|
1044
1044
|
static readonly TagPayload: PuppetTagPayload;
|
|
1045
1045
|
static readonly TagGroupList: PuppetTagGroupList;
|
|
1046
1046
|
static readonly TagGroupTagList: PuppetTagGroupTagList;
|
|
@@ -772,8 +772,8 @@ Puppet.TagTagDelete = {
|
|
|
772
772
|
responseType: wechaty_puppet_tag_pb.TagTagDeleteResponse
|
|
773
773
|
};
|
|
774
774
|
|
|
775
|
-
Puppet.
|
|
776
|
-
methodName: "
|
|
775
|
+
Puppet.TagTagModify = {
|
|
776
|
+
methodName: "TagTagModify",
|
|
777
777
|
service: Puppet,
|
|
778
778
|
requestStream: false,
|
|
779
779
|
responseStream: false,
|
|
@@ -3553,7 +3553,7 @@ PuppetClient.prototype.tagTagModify = function tagTagModify(requestMessage, meta
|
|
|
3553
3553
|
if (arguments.length === 2) {
|
|
3554
3554
|
callback = arguments[1];
|
|
3555
3555
|
}
|
|
3556
|
-
var client = grpc.unary(Puppet.
|
|
3556
|
+
var client = grpc.unary(Puppet.TagTagModify, {
|
|
3557
3557
|
request: requestMessage,
|
|
3558
3558
|
host: this.serviceHost,
|
|
3559
3559
|
metadata: metadata,
|
|
@@ -649,7 +649,7 @@ service Puppet {
|
|
|
649
649
|
};
|
|
650
650
|
}
|
|
651
651
|
|
|
652
|
-
rpc
|
|
652
|
+
rpc TagTagModify (puppet.TagTagModifyRequest) returns (puppet.TagTagModifyResponse) {
|
|
653
653
|
option (google.api.http) = {
|
|
654
654
|
post: "/tag/modify"
|
|
655
655
|
body: "*"
|
|
@@ -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.
|
|
6
|
+
"version": "1.0.78",
|
|
7
7
|
"description": "gRPC for Wechaty",
|
|
8
8
|
"type": "module",
|
|
9
9
|
"exports": {
|
|
@@ -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.78
|
|
13
13
|
contact:
|
|
14
14
|
name: Wechaty
|
|
15
15
|
url: https://github.com/wechaty/openapi
|
|
@@ -2158,7 +2158,7 @@ paths:
|
|
|
2158
2158
|
- Puppet
|
|
2159
2159
|
/tag/modify:
|
|
2160
2160
|
post:
|
|
2161
|
-
operationId:
|
|
2161
|
+
operationId: Puppet_TagTagModify
|
|
2162
2162
|
responses:
|
|
2163
2163
|
'200':
|
|
2164
2164
|
description: A successful response.
|
|
@@ -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.78",
|
|
7
7
|
"contact": {
|
|
8
8
|
"name": "Wechaty",
|
|
9
9
|
"url": "https://github.com/wechaty/openapi",
|
|
@@ -3259,7 +3259,7 @@
|
|
|
3259
3259
|
},
|
|
3260
3260
|
"/tag/modify": {
|
|
3261
3261
|
"post": {
|
|
3262
|
-
"operationId": "
|
|
3262
|
+
"operationId": "Puppet_TagTagModify",
|
|
3263
3263
|
"responses": {
|
|
3264
3264
|
"200": {
|
|
3265
3265
|
"description": "A successful response.",
|
|
@@ -107,7 +107,7 @@ interface IPuppetService extends grpc.ServiceDefinition<grpc.UntypedServiceImple
|
|
|
107
107
|
tagGroupPayload: IPuppetService_ITagGroupPayload;
|
|
108
108
|
tagTagAdd: IPuppetService_ITagTagAdd;
|
|
109
109
|
tagTagDelete: IPuppetService_ITagTagDelete;
|
|
110
|
-
tagTagModify:
|
|
110
|
+
tagTagModify: IPuppetService_ITagTagModify;
|
|
111
111
|
tagPayload: IPuppetService_ITagPayload;
|
|
112
112
|
tagGroupList: IPuppetService_ITagGroupList;
|
|
113
113
|
tagGroupTagList: IPuppetService_ITagGroupTagList;
|
|
@@ -877,8 +877,8 @@ interface IPuppetService_ITagTagDelete extends grpc.MethodDefinition<wechaty_pup
|
|
|
877
877
|
responseSerialize: grpc.serialize<wechaty_puppet_tag_pb.TagTagDeleteResponse>;
|
|
878
878
|
responseDeserialize: grpc.deserialize<wechaty_puppet_tag_pb.TagTagDeleteResponse>;
|
|
879
879
|
}
|
|
880
|
-
interface
|
|
881
|
-
path: "/wechaty.Puppet/
|
|
880
|
+
interface IPuppetService_ITagTagModify extends grpc.MethodDefinition<wechaty_puppet_tag_pb.TagTagModifyRequest, wechaty_puppet_tag_pb.TagTagModifyResponse> {
|
|
881
|
+
path: "/wechaty.Puppet/TagTagModify";
|
|
882
882
|
requestStream: false;
|
|
883
883
|
responseStream: false;
|
|
884
884
|
requestSerialize: grpc.serialize<wechaty_puppet_tag_pb.TagTagModifyRequest>;
|
|
@@ -3232,7 +3232,7 @@ tagContactTagAdd: {
|
|
|
3232
3232
|
responseDeserialize: deserialize_wechaty_puppet_TagTagDeleteResponse,
|
|
3233
3233
|
},
|
|
3234
3234
|
tagTagModify: {
|
|
3235
|
-
path: '/wechaty.Puppet/
|
|
3235
|
+
path: '/wechaty.Puppet/TagTagModify',
|
|
3236
3236
|
requestStream: false,
|
|
3237
3237
|
responseStream: false,
|
|
3238
3238
|
requestType: wechaty_puppet_tag_pb.TagTagModifyRequest,
|
|
@@ -766,7 +766,7 @@ type PuppetTagTagDelete = {
|
|
|
766
766
|
readonly responseType: typeof wechaty_puppet_tag_pb.TagTagDeleteResponse;
|
|
767
767
|
};
|
|
768
768
|
|
|
769
|
-
type
|
|
769
|
+
type PuppetTagTagModify = {
|
|
770
770
|
readonly methodName: string;
|
|
771
771
|
readonly service: typeof Puppet;
|
|
772
772
|
readonly requestStream: false;
|
|
@@ -1040,7 +1040,7 @@ export class Puppet {
|
|
|
1040
1040
|
static readonly TagGroupPayload: PuppetTagGroupPayload;
|
|
1041
1041
|
static readonly TagTagAdd: PuppetTagTagAdd;
|
|
1042
1042
|
static readonly TagTagDelete: PuppetTagTagDelete;
|
|
1043
|
-
static readonly
|
|
1043
|
+
static readonly TagTagModify: PuppetTagTagModify;
|
|
1044
1044
|
static readonly TagPayload: PuppetTagPayload;
|
|
1045
1045
|
static readonly TagGroupList: PuppetTagGroupList;
|
|
1046
1046
|
static readonly TagGroupTagList: PuppetTagGroupTagList;
|
|
@@ -772,8 +772,8 @@ Puppet.TagTagDelete = {
|
|
|
772
772
|
responseType: wechaty_puppet_tag_pb.TagTagDeleteResponse
|
|
773
773
|
};
|
|
774
774
|
|
|
775
|
-
Puppet.
|
|
776
|
-
methodName: "
|
|
775
|
+
Puppet.TagTagModify = {
|
|
776
|
+
methodName: "TagTagModify",
|
|
777
777
|
service: Puppet,
|
|
778
778
|
requestStream: false,
|
|
779
779
|
responseStream: false,
|
|
@@ -3553,7 +3553,7 @@ PuppetClient.prototype.tagTagModify = function tagTagModify(requestMessage, meta
|
|
|
3553
3553
|
if (arguments.length === 2) {
|
|
3554
3554
|
callback = arguments[1];
|
|
3555
3555
|
}
|
|
3556
|
-
var client = grpc.unary(Puppet.
|
|
3556
|
+
var client = grpc.unary(Puppet.TagTagModify, {
|
|
3557
3557
|
request: requestMessage,
|
|
3558
3558
|
host: this.serviceHost,
|
|
3559
3559
|
metadata: metadata,
|
|
@@ -649,7 +649,7 @@ service Puppet {
|
|
|
649
649
|
};
|
|
650
650
|
}
|
|
651
651
|
|
|
652
|
-
rpc
|
|
652
|
+
rpc TagTagModify (puppet.TagTagModifyRequest) returns (puppet.TagTagModifyResponse) {
|
|
653
653
|
option (google.api.http) = {
|
|
654
654
|
post: "/tag/modify"
|
|
655
655
|
body: "*"
|
|
@@ -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.78
|
|
13
13
|
contact:
|
|
14
14
|
name: Wechaty
|
|
15
15
|
url: https://github.com/wechaty/openapi
|
|
@@ -2158,7 +2158,7 @@ paths:
|
|
|
2158
2158
|
- Puppet
|
|
2159
2159
|
/tag/modify:
|
|
2160
2160
|
post:
|
|
2161
|
-
operationId:
|
|
2161
|
+
operationId: Puppet_TagTagModify
|
|
2162
2162
|
responses:
|
|
2163
2163
|
'200':
|
|
2164
2164
|
description: A successful response.
|
|
@@ -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.78",
|
|
7
7
|
"contact": {
|
|
8
8
|
"name": "Wechaty",
|
|
9
9
|
"url": "https://github.com/wechaty/openapi",
|
|
@@ -3259,7 +3259,7 @@
|
|
|
3259
3259
|
},
|
|
3260
3260
|
"/tag/modify": {
|
|
3261
3261
|
"post": {
|
|
3262
|
-
"operationId": "
|
|
3262
|
+
"operationId": "Puppet_TagTagModify",
|
|
3263
3263
|
"responses": {
|
|
3264
3264
|
"200": {
|
|
3265
3265
|
"description": "A successful response.",
|
|
@@ -107,7 +107,7 @@ interface IPuppetService extends grpc.ServiceDefinition<grpc.UntypedServiceImple
|
|
|
107
107
|
tagGroupPayload: IPuppetService_ITagGroupPayload;
|
|
108
108
|
tagTagAdd: IPuppetService_ITagTagAdd;
|
|
109
109
|
tagTagDelete: IPuppetService_ITagTagDelete;
|
|
110
|
-
tagTagModify:
|
|
110
|
+
tagTagModify: IPuppetService_ITagTagModify;
|
|
111
111
|
tagPayload: IPuppetService_ITagPayload;
|
|
112
112
|
tagGroupList: IPuppetService_ITagGroupList;
|
|
113
113
|
tagGroupTagList: IPuppetService_ITagGroupTagList;
|
|
@@ -877,8 +877,8 @@ interface IPuppetService_ITagTagDelete extends grpc.MethodDefinition<wechaty_pup
|
|
|
877
877
|
responseSerialize: grpc.serialize<wechaty_puppet_tag_pb.TagTagDeleteResponse>;
|
|
878
878
|
responseDeserialize: grpc.deserialize<wechaty_puppet_tag_pb.TagTagDeleteResponse>;
|
|
879
879
|
}
|
|
880
|
-
interface
|
|
881
|
-
path: "/wechaty.Puppet/
|
|
880
|
+
interface IPuppetService_ITagTagModify extends grpc.MethodDefinition<wechaty_puppet_tag_pb.TagTagModifyRequest, wechaty_puppet_tag_pb.TagTagModifyResponse> {
|
|
881
|
+
path: "/wechaty.Puppet/TagTagModify";
|
|
882
882
|
requestStream: false;
|
|
883
883
|
responseStream: false;
|
|
884
884
|
requestSerialize: grpc.serialize<wechaty_puppet_tag_pb.TagTagModifyRequest>;
|
|
@@ -3232,7 +3232,7 @@ tagContactTagAdd: {
|
|
|
3232
3232
|
responseDeserialize: deserialize_wechaty_puppet_TagTagDeleteResponse,
|
|
3233
3233
|
},
|
|
3234
3234
|
tagTagModify: {
|
|
3235
|
-
path: '/wechaty.Puppet/
|
|
3235
|
+
path: '/wechaty.Puppet/TagTagModify',
|
|
3236
3236
|
requestStream: false,
|
|
3237
3237
|
responseStream: false,
|
|
3238
3238
|
requestType: wechaty_puppet_tag_pb.TagTagModifyRequest,
|
|
@@ -766,7 +766,7 @@ type PuppetTagTagDelete = {
|
|
|
766
766
|
readonly responseType: typeof wechaty_puppet_tag_pb.TagTagDeleteResponse;
|
|
767
767
|
};
|
|
768
768
|
|
|
769
|
-
type
|
|
769
|
+
type PuppetTagTagModify = {
|
|
770
770
|
readonly methodName: string;
|
|
771
771
|
readonly service: typeof Puppet;
|
|
772
772
|
readonly requestStream: false;
|
|
@@ -1040,7 +1040,7 @@ export class Puppet {
|
|
|
1040
1040
|
static readonly TagGroupPayload: PuppetTagGroupPayload;
|
|
1041
1041
|
static readonly TagTagAdd: PuppetTagTagAdd;
|
|
1042
1042
|
static readonly TagTagDelete: PuppetTagTagDelete;
|
|
1043
|
-
static readonly
|
|
1043
|
+
static readonly TagTagModify: PuppetTagTagModify;
|
|
1044
1044
|
static readonly TagPayload: PuppetTagPayload;
|
|
1045
1045
|
static readonly TagGroupList: PuppetTagGroupList;
|
|
1046
1046
|
static readonly TagGroupTagList: PuppetTagGroupTagList;
|
|
@@ -772,8 +772,8 @@ Puppet.TagTagDelete = {
|
|
|
772
772
|
responseType: wechaty_puppet_tag_pb.TagTagDeleteResponse
|
|
773
773
|
};
|
|
774
774
|
|
|
775
|
-
Puppet.
|
|
776
|
-
methodName: "
|
|
775
|
+
Puppet.TagTagModify = {
|
|
776
|
+
methodName: "TagTagModify",
|
|
777
777
|
service: Puppet,
|
|
778
778
|
requestStream: false,
|
|
779
779
|
responseStream: false,
|
|
@@ -3553,7 +3553,7 @@ PuppetClient.prototype.tagTagModify = function tagTagModify(requestMessage, meta
|
|
|
3553
3553
|
if (arguments.length === 2) {
|
|
3554
3554
|
callback = arguments[1];
|
|
3555
3555
|
}
|
|
3556
|
-
var client = grpc.unary(Puppet.
|
|
3556
|
+
var client = grpc.unary(Puppet.TagTagModify, {
|
|
3557
3557
|
request: requestMessage,
|
|
3558
3558
|
host: this.serviceHost,
|
|
3559
3559
|
metadata: metadata,
|
package/package.json
CHANGED
package/src/package-json.ts
CHANGED