@juzi/wechaty-grpc 1.0.18 → 1.0.19
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/moment_pb.d.ts +0 -172
- package/dist/cjs/out/wechaty/puppet/moment_pb.js +87 -1406
- package/dist/cjs/out/wechaty/puppet/post_pb.d.ts +172 -0
- package/dist/cjs/out/wechaty/puppet/post_pb.js +1319 -0
- package/dist/cjs/out/wechaty/puppet.openapi.yaml +72 -72
- package/dist/cjs/out/wechaty/puppet.swagger.json +97 -97
- package/dist/cjs/out/wechaty/puppet_grpc_pb.d.ts +56 -56
- package/dist/cjs/out/wechaty/puppet_grpc_pb.js +103 -103
- package/dist/cjs/out/wechaty/puppet_pb_service.d.ts +41 -40
- package/dist/cjs/out/wechaty/puppet_pb_service.js +25 -24
- package/dist/cjs/proto/wechaty/puppet/moment.proto +0 -33
- package/dist/cjs/proto/wechaty/puppet/post.proto +34 -0
- package/dist/cjs/proto/wechaty/puppet.proto +9 -9
- package/dist/cjs/src/package-json.js +1 -1
- package/dist/cjs/tests/puppet-server-impl.js +4 -4
- package/dist/cjs/tests/puppet-server-impl.js.map +1 -1
- package/dist/esm/out/wechaty/puppet/moment_pb.d.ts +0 -172
- package/dist/esm/out/wechaty/puppet/moment_pb.js +87 -1406
- package/dist/esm/out/wechaty/puppet/post_pb.d.ts +172 -0
- package/dist/esm/out/wechaty/puppet/post_pb.js +1319 -0
- package/dist/esm/out/wechaty/puppet.openapi.yaml +72 -72
- package/dist/esm/out/wechaty/puppet.swagger.json +97 -97
- package/dist/esm/out/wechaty/puppet_grpc_pb.d.ts +56 -56
- package/dist/esm/out/wechaty/puppet_grpc_pb.js +103 -103
- package/dist/esm/out/wechaty/puppet_pb_service.d.ts +41 -40
- package/dist/esm/out/wechaty/puppet_pb_service.js +25 -24
- package/dist/esm/proto/wechaty/puppet/moment.proto +0 -33
- package/dist/esm/proto/wechaty/puppet/post.proto +34 -0
- package/dist/esm/proto/wechaty/puppet.proto +9 -9
- package/dist/esm/src/package-json.js +1 -1
- package/dist/esm/tests/puppet-server-impl.js +4 -4
- package/dist/esm/tests/puppet-server-impl.js.map +1 -1
- package/out/wechaty/puppet/moment_pb.d.ts +0 -172
- package/out/wechaty/puppet/moment_pb.js +87 -1406
- package/out/wechaty/puppet/post_pb.d.ts +172 -0
- package/out/wechaty/puppet/post_pb.js +1319 -0
- package/out/wechaty/puppet.openapi.yaml +72 -72
- package/out/wechaty/puppet.swagger.json +97 -97
- package/out/wechaty/puppet_grpc_pb.d.ts +56 -56
- package/out/wechaty/puppet_grpc_pb.js +103 -103
- package/out/wechaty/puppet_pb_service.d.ts +41 -40
- package/out/wechaty/puppet_pb_service.js +25 -24
- package/package.json +1 -1
- package/src/package-json.ts +1 -1
|
@@ -46,90 +46,6 @@ export namespace MomentPublishResponse {
|
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
-
export class MomentCommentRequest extends jspb.Message {
|
|
50
|
-
getMomentId(): string;
|
|
51
|
-
setMomentId(value: string): void;
|
|
52
|
-
|
|
53
|
-
getText(): string;
|
|
54
|
-
setText(value: string): void;
|
|
55
|
-
|
|
56
|
-
getMentionId(): string;
|
|
57
|
-
setMentionId(value: string): void;
|
|
58
|
-
|
|
59
|
-
serializeBinary(): Uint8Array;
|
|
60
|
-
toObject(includeInstance?: boolean): MomentCommentRequest.AsObject;
|
|
61
|
-
static toObject(includeInstance: boolean, msg: MomentCommentRequest): MomentCommentRequest.AsObject;
|
|
62
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
63
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
64
|
-
static serializeBinaryToWriter(message: MomentCommentRequest, writer: jspb.BinaryWriter): void;
|
|
65
|
-
static deserializeBinary(bytes: Uint8Array): MomentCommentRequest;
|
|
66
|
-
static deserializeBinaryFromReader(message: MomentCommentRequest, reader: jspb.BinaryReader): MomentCommentRequest;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
export namespace MomentCommentRequest {
|
|
70
|
-
export type AsObject = {
|
|
71
|
-
momentId: string,
|
|
72
|
-
text: string,
|
|
73
|
-
mentionId: string,
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
export class MomentCommentResponse extends jspb.Message {
|
|
78
|
-
getCommentId(): string;
|
|
79
|
-
setCommentId(value: string): void;
|
|
80
|
-
|
|
81
|
-
serializeBinary(): Uint8Array;
|
|
82
|
-
toObject(includeInstance?: boolean): MomentCommentResponse.AsObject;
|
|
83
|
-
static toObject(includeInstance: boolean, msg: MomentCommentResponse): MomentCommentResponse.AsObject;
|
|
84
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
85
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
86
|
-
static serializeBinaryToWriter(message: MomentCommentResponse, writer: jspb.BinaryWriter): void;
|
|
87
|
-
static deserializeBinary(bytes: Uint8Array): MomentCommentResponse;
|
|
88
|
-
static deserializeBinaryFromReader(message: MomentCommentResponse, reader: jspb.BinaryReader): MomentCommentResponse;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
export namespace MomentCommentResponse {
|
|
92
|
-
export type AsObject = {
|
|
93
|
-
commentId: string,
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
export class MomentLikeRequest extends jspb.Message {
|
|
98
|
-
getMomentId(): string;
|
|
99
|
-
setMomentId(value: string): void;
|
|
100
|
-
|
|
101
|
-
serializeBinary(): Uint8Array;
|
|
102
|
-
toObject(includeInstance?: boolean): MomentLikeRequest.AsObject;
|
|
103
|
-
static toObject(includeInstance: boolean, msg: MomentLikeRequest): MomentLikeRequest.AsObject;
|
|
104
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
105
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
106
|
-
static serializeBinaryToWriter(message: MomentLikeRequest, writer: jspb.BinaryWriter): void;
|
|
107
|
-
static deserializeBinary(bytes: Uint8Array): MomentLikeRequest;
|
|
108
|
-
static deserializeBinaryFromReader(message: MomentLikeRequest, reader: jspb.BinaryReader): MomentLikeRequest;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
export namespace MomentLikeRequest {
|
|
112
|
-
export type AsObject = {
|
|
113
|
-
momentId: string,
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
export class MomentLikeResponse extends jspb.Message {
|
|
118
|
-
serializeBinary(): Uint8Array;
|
|
119
|
-
toObject(includeInstance?: boolean): MomentLikeResponse.AsObject;
|
|
120
|
-
static toObject(includeInstance: boolean, msg: MomentLikeResponse): MomentLikeResponse.AsObject;
|
|
121
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
122
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
123
|
-
static serializeBinaryToWriter(message: MomentLikeResponse, writer: jspb.BinaryWriter): void;
|
|
124
|
-
static deserializeBinary(bytes: Uint8Array): MomentLikeResponse;
|
|
125
|
-
static deserializeBinaryFromReader(message: MomentLikeResponse, reader: jspb.BinaryReader): MomentLikeResponse;
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
export namespace MomentLikeResponse {
|
|
129
|
-
export type AsObject = {
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
|
|
133
49
|
export class MomentSignatureRequest extends jspb.Message {
|
|
134
50
|
getText(): string;
|
|
135
51
|
setText(value: string): void;
|
|
@@ -210,91 +126,3 @@ export namespace MomentCoverageResponse {
|
|
|
210
126
|
}
|
|
211
127
|
}
|
|
212
128
|
|
|
213
|
-
export class MomentPayloadRequest extends jspb.Message {
|
|
214
|
-
getMomentId(): string;
|
|
215
|
-
setMomentId(value: string): void;
|
|
216
|
-
|
|
217
|
-
serializeBinary(): Uint8Array;
|
|
218
|
-
toObject(includeInstance?: boolean): MomentPayloadRequest.AsObject;
|
|
219
|
-
static toObject(includeInstance: boolean, msg: MomentPayloadRequest): MomentPayloadRequest.AsObject;
|
|
220
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
221
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
222
|
-
static serializeBinaryToWriter(message: MomentPayloadRequest, writer: jspb.BinaryWriter): void;
|
|
223
|
-
static deserializeBinary(bytes: Uint8Array): MomentPayloadRequest;
|
|
224
|
-
static deserializeBinaryFromReader(message: MomentPayloadRequest, reader: jspb.BinaryReader): MomentPayloadRequest;
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
export namespace MomentPayloadRequest {
|
|
228
|
-
export type AsObject = {
|
|
229
|
-
momentId: string,
|
|
230
|
-
}
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
export class MomentPayloadResponse extends jspb.Message {
|
|
234
|
-
hasMoment(): boolean;
|
|
235
|
-
clearMoment(): void;
|
|
236
|
-
getMoment(): wechaty_puppet_post_pb.PostPayloadServer | undefined;
|
|
237
|
-
setMoment(value?: wechaty_puppet_post_pb.PostPayloadServer): void;
|
|
238
|
-
|
|
239
|
-
serializeBinary(): Uint8Array;
|
|
240
|
-
toObject(includeInstance?: boolean): MomentPayloadResponse.AsObject;
|
|
241
|
-
static toObject(includeInstance: boolean, msg: MomentPayloadResponse): MomentPayloadResponse.AsObject;
|
|
242
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
243
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
244
|
-
static serializeBinaryToWriter(message: MomentPayloadResponse, writer: jspb.BinaryWriter): void;
|
|
245
|
-
static deserializeBinary(bytes: Uint8Array): MomentPayloadResponse;
|
|
246
|
-
static deserializeBinaryFromReader(message: MomentPayloadResponse, reader: jspb.BinaryReader): MomentPayloadResponse;
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
export namespace MomentPayloadResponse {
|
|
250
|
-
export type AsObject = {
|
|
251
|
-
moment?: wechaty_puppet_post_pb.PostPayloadServer.AsObject,
|
|
252
|
-
}
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
export class MomentPayloadSayableRequest extends jspb.Message {
|
|
256
|
-
getMomentId(): string;
|
|
257
|
-
setMomentId(value: string): void;
|
|
258
|
-
|
|
259
|
-
getSayableId(): string;
|
|
260
|
-
setSayableId(value: string): void;
|
|
261
|
-
|
|
262
|
-
serializeBinary(): Uint8Array;
|
|
263
|
-
toObject(includeInstance?: boolean): MomentPayloadSayableRequest.AsObject;
|
|
264
|
-
static toObject(includeInstance: boolean, msg: MomentPayloadSayableRequest): MomentPayloadSayableRequest.AsObject;
|
|
265
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
266
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
267
|
-
static serializeBinaryToWriter(message: MomentPayloadSayableRequest, writer: jspb.BinaryWriter): void;
|
|
268
|
-
static deserializeBinary(bytes: Uint8Array): MomentPayloadSayableRequest;
|
|
269
|
-
static deserializeBinaryFromReader(message: MomentPayloadSayableRequest, reader: jspb.BinaryReader): MomentPayloadSayableRequest;
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
export namespace MomentPayloadSayableRequest {
|
|
273
|
-
export type AsObject = {
|
|
274
|
-
momentId: string,
|
|
275
|
-
sayableId: string,
|
|
276
|
-
}
|
|
277
|
-
}
|
|
278
|
-
|
|
279
|
-
export class MomentPayloadSayableResponse extends jspb.Message {
|
|
280
|
-
hasSayable(): boolean;
|
|
281
|
-
clearSayable(): void;
|
|
282
|
-
getSayable(): wechaty_puppet_post_pb.PostSayable | undefined;
|
|
283
|
-
setSayable(value?: wechaty_puppet_post_pb.PostSayable): void;
|
|
284
|
-
|
|
285
|
-
serializeBinary(): Uint8Array;
|
|
286
|
-
toObject(includeInstance?: boolean): MomentPayloadSayableResponse.AsObject;
|
|
287
|
-
static toObject(includeInstance: boolean, msg: MomentPayloadSayableResponse): MomentPayloadSayableResponse.AsObject;
|
|
288
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
289
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
290
|
-
static serializeBinaryToWriter(message: MomentPayloadSayableResponse, writer: jspb.BinaryWriter): void;
|
|
291
|
-
static deserializeBinary(bytes: Uint8Array): MomentPayloadSayableResponse;
|
|
292
|
-
static deserializeBinaryFromReader(message: MomentPayloadSayableResponse, reader: jspb.BinaryReader): MomentPayloadSayableResponse;
|
|
293
|
-
}
|
|
294
|
-
|
|
295
|
-
export namespace MomentPayloadSayableResponse {
|
|
296
|
-
export type AsObject = {
|
|
297
|
-
sayable?: wechaty_puppet_post_pb.PostSayable.AsObject,
|
|
298
|
-
}
|
|
299
|
-
}
|
|
300
|
-
|