@juzi/wechaty-grpc 1.0.26 → 1.0.28
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/commonjs/generated/puppet.cjs +1 -0
- package/dist/cjs/commonjs/generated/puppet.cjs.d.ts +1 -0
- package/dist/cjs/out/wechaty/puppet/base_pb.d.ts +3 -2
- package/dist/cjs/out/wechaty/puppet/base_pb.js +3 -2
- package/dist/cjs/out/wechaty/puppet.openapi.yaml +226 -2
- package/dist/cjs/out/wechaty/puppet.swagger.json +288 -127
- package/dist/cjs/proto/wechaty/puppet/base.proto +3 -2
- package/dist/cjs/src/package-json.js +1 -1
- package/dist/esm/commonjs/generated/puppet.cjs +1 -0
- package/dist/esm/commonjs/generated/puppet.cjs.d.ts +1 -0
- package/dist/esm/out/wechaty/puppet/base_pb.d.ts +3 -2
- package/dist/esm/out/wechaty/puppet/base_pb.js +3 -2
- package/dist/esm/out/wechaty/puppet.openapi.yaml +226 -2
- package/dist/esm/out/wechaty/puppet.swagger.json +288 -127
- package/dist/esm/proto/wechaty/puppet/base.proto +3 -2
- package/dist/esm/src/package-json.js +1 -1
- package/out/wechaty/puppet/base_pb.d.ts +3 -2
- package/out/wechaty/puppet/base_pb.js +3 -2
- package/out/wechaty/puppet.openapi.yaml +226 -2
- package/out/wechaty/puppet.swagger.json +288 -127
- package/package.json +1 -1
- package/src/package-json.ts +1 -1
|
@@ -12,8 +12,9 @@ enum PayloadType {
|
|
|
12
12
|
PAYLOAD_TYPE_ROOM = 3;
|
|
13
13
|
PAYLOAD_TYPE_ROOM_MEMBER = 4;
|
|
14
14
|
PAYLOAD_TYPE_FRIENDSHIP = 5;
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
PAYLOAD_TYPE_POST = 6;
|
|
16
|
+
PAYLOAD_TYPE_TAG = 7;
|
|
17
|
+
PAYLOAD_TYPE_TAG_GROUP = 8;
|
|
17
18
|
}
|
|
18
19
|
|
|
19
20
|
message StartRequest {}
|
|
@@ -254,8 +254,9 @@ export interface PayloadTypeMap {
|
|
|
254
254
|
PAYLOAD_TYPE_ROOM: 3;
|
|
255
255
|
PAYLOAD_TYPE_ROOM_MEMBER: 4;
|
|
256
256
|
PAYLOAD_TYPE_FRIENDSHIP: 5;
|
|
257
|
-
|
|
258
|
-
|
|
257
|
+
PAYLOAD_TYPE_POST: 6;
|
|
258
|
+
PAYLOAD_TYPE_TAG: 7;
|
|
259
|
+
PAYLOAD_TYPE_TAG_GROUP: 8;
|
|
259
260
|
}
|
|
260
261
|
|
|
261
262
|
export const PayloadType: PayloadTypeMap;
|
|
@@ -1894,8 +1894,9 @@ proto.wechaty.puppet.PayloadType = {
|
|
|
1894
1894
|
PAYLOAD_TYPE_ROOM: 3,
|
|
1895
1895
|
PAYLOAD_TYPE_ROOM_MEMBER: 4,
|
|
1896
1896
|
PAYLOAD_TYPE_FRIENDSHIP: 5,
|
|
1897
|
-
|
|
1898
|
-
|
|
1897
|
+
PAYLOAD_TYPE_POST: 6,
|
|
1898
|
+
PAYLOAD_TYPE_TAG: 7,
|
|
1899
|
+
PAYLOAD_TYPE_TAG_GROUP: 8
|
|
1899
1900
|
};
|
|
1900
1901
|
|
|
1901
1902
|
goog.object.extend(exports, proto.wechaty.puppet);
|