@juzi/wechaty-grpc 1.0.97 → 1.0.99
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/room_pb.d.ts +136 -0
- package/dist/cjs/out/wechaty/puppet/room_pb.js +1098 -2
- package/dist/cjs/out/wechaty/puppet.openapi.yaml +102 -1
- package/dist/cjs/out/wechaty/puppet.swagger.json +154 -1
- package/dist/cjs/out/wechaty/puppet_grpc_pb.d.ts +34 -0
- package/dist/cjs/out/wechaty/puppet_grpc_pb.js +66 -0
- package/dist/cjs/out/wechaty/puppet_pb_service.d.ts +38 -0
- package/dist/cjs/out/wechaty/puppet_pb_service.js +80 -0
- package/dist/cjs/proto/wechaty/puppet/room.proto +23 -0
- package/dist/cjs/proto/wechaty/puppet.proto +13 -0
- package/dist/cjs/src/package-json.js +1 -1
- package/dist/cjs/tests/puppet-server-impl.d.ts.map +1 -1
- package/dist/cjs/tests/puppet-server-impl.js +10 -0
- package/dist/cjs/tests/puppet-server-impl.js.map +1 -1
- package/dist/esm/out/wechaty/puppet/room_pb.d.ts +136 -0
- package/dist/esm/out/wechaty/puppet/room_pb.js +1098 -2
- package/dist/esm/out/wechaty/puppet.openapi.yaml +102 -1
- package/dist/esm/out/wechaty/puppet.swagger.json +154 -1
- package/dist/esm/out/wechaty/puppet_grpc_pb.d.ts +34 -0
- package/dist/esm/out/wechaty/puppet_grpc_pb.js +66 -0
- package/dist/esm/out/wechaty/puppet_pb_service.d.ts +38 -0
- package/dist/esm/out/wechaty/puppet_pb_service.js +80 -0
- package/dist/esm/proto/wechaty/puppet/room.proto +23 -0
- package/dist/esm/proto/wechaty/puppet.proto +13 -0
- package/dist/esm/src/package-json.js +1 -1
- package/dist/esm/tests/puppet-server-impl.d.ts.map +1 -1
- package/dist/esm/tests/puppet-server-impl.js +10 -0
- package/dist/esm/tests/puppet-server-impl.js.map +1 -1
- package/out/wechaty/puppet/room_pb.d.ts +136 -0
- package/out/wechaty/puppet/room_pb.js +1098 -2
- package/out/wechaty/puppet.openapi.yaml +102 -1
- package/out/wechaty/puppet.swagger.json +154 -1
- package/out/wechaty/puppet_grpc_pb.d.ts +34 -0
- package/out/wechaty/puppet_grpc_pb.js +66 -0
- package/out/wechaty/puppet_pb_service.d.ts +38 -0
- package/out/wechaty/puppet_pb_service.js +80 -0
- package/package.json +1 -1
- package/src/package-json.ts +1 -1
|
@@ -145,6 +145,11 @@ export class RoomAddRequest extends jspb.Message {
|
|
|
145
145
|
setQuoteIdsList(value: Array<string>): void;
|
|
146
146
|
addQuoteIds(value: string, index?: number): string;
|
|
147
147
|
|
|
148
|
+
clearContactIdsList(): void;
|
|
149
|
+
getContactIdsList(): Array<string>;
|
|
150
|
+
setContactIdsList(value: Array<string>): void;
|
|
151
|
+
addContactIds(value: string, index?: number): string;
|
|
152
|
+
|
|
148
153
|
serializeBinary(): Uint8Array;
|
|
149
154
|
toObject(includeInstance?: boolean): RoomAddRequest.AsObject;
|
|
150
155
|
static toObject(includeInstance: boolean, msg: RoomAddRequest): RoomAddRequest.AsObject;
|
|
@@ -161,6 +166,7 @@ export namespace RoomAddRequest {
|
|
|
161
166
|
contactId: string,
|
|
162
167
|
inviteOnly: boolean,
|
|
163
168
|
quoteIdsList: Array<string>,
|
|
169
|
+
contactIdsList: Array<string>,
|
|
164
170
|
}
|
|
165
171
|
}
|
|
166
172
|
|
|
@@ -180,6 +186,136 @@ export namespace RoomAddResponse {
|
|
|
180
186
|
}
|
|
181
187
|
}
|
|
182
188
|
|
|
189
|
+
export class RoomAddV2Request extends jspb.Message {
|
|
190
|
+
getId(): string;
|
|
191
|
+
setId(value: string): void;
|
|
192
|
+
|
|
193
|
+
clearContactIdsList(): void;
|
|
194
|
+
getContactIdsList(): Array<string>;
|
|
195
|
+
setContactIdsList(value: Array<string>): void;
|
|
196
|
+
addContactIds(value: string, index?: number): string;
|
|
197
|
+
|
|
198
|
+
getInviteOnly(): boolean;
|
|
199
|
+
setInviteOnly(value: boolean): void;
|
|
200
|
+
|
|
201
|
+
clearQuoteIdsList(): void;
|
|
202
|
+
getQuoteIdsList(): Array<string>;
|
|
203
|
+
setQuoteIdsList(value: Array<string>): void;
|
|
204
|
+
addQuoteIds(value: string, index?: number): string;
|
|
205
|
+
|
|
206
|
+
serializeBinary(): Uint8Array;
|
|
207
|
+
toObject(includeInstance?: boolean): RoomAddV2Request.AsObject;
|
|
208
|
+
static toObject(includeInstance: boolean, msg: RoomAddV2Request): RoomAddV2Request.AsObject;
|
|
209
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
210
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
211
|
+
static serializeBinaryToWriter(message: RoomAddV2Request, writer: jspb.BinaryWriter): void;
|
|
212
|
+
static deserializeBinary(bytes: Uint8Array): RoomAddV2Request;
|
|
213
|
+
static deserializeBinaryFromReader(message: RoomAddV2Request, reader: jspb.BinaryReader): RoomAddV2Request;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
export namespace RoomAddV2Request {
|
|
217
|
+
export type AsObject = {
|
|
218
|
+
id: string,
|
|
219
|
+
contactIdsList: Array<string>,
|
|
220
|
+
inviteOnly: boolean,
|
|
221
|
+
quoteIdsList: Array<string>,
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
export class RoomAddV2Response extends jspb.Message {
|
|
226
|
+
clearSuccessIdsList(): void;
|
|
227
|
+
getSuccessIdsList(): Array<string>;
|
|
228
|
+
setSuccessIdsList(value: Array<string>): void;
|
|
229
|
+
addSuccessIds(value: string, index?: number): string;
|
|
230
|
+
|
|
231
|
+
clearFailedIdsList(): void;
|
|
232
|
+
getFailedIdsList(): Array<string>;
|
|
233
|
+
setFailedIdsList(value: Array<string>): void;
|
|
234
|
+
addFailedIds(value: string, index?: number): string;
|
|
235
|
+
|
|
236
|
+
clearFailedReasonsList(): void;
|
|
237
|
+
getFailedReasonsList(): Array<string>;
|
|
238
|
+
setFailedReasonsList(value: Array<string>): void;
|
|
239
|
+
addFailedReasons(value: string, index?: number): string;
|
|
240
|
+
|
|
241
|
+
serializeBinary(): Uint8Array;
|
|
242
|
+
toObject(includeInstance?: boolean): RoomAddV2Response.AsObject;
|
|
243
|
+
static toObject(includeInstance: boolean, msg: RoomAddV2Response): RoomAddV2Response.AsObject;
|
|
244
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
245
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
246
|
+
static serializeBinaryToWriter(message: RoomAddV2Response, writer: jspb.BinaryWriter): void;
|
|
247
|
+
static deserializeBinary(bytes: Uint8Array): RoomAddV2Response;
|
|
248
|
+
static deserializeBinaryFromReader(message: RoomAddV2Response, reader: jspb.BinaryReader): RoomAddV2Response;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
export namespace RoomAddV2Response {
|
|
252
|
+
export type AsObject = {
|
|
253
|
+
successIdsList: Array<string>,
|
|
254
|
+
failedIdsList: Array<string>,
|
|
255
|
+
failedReasonsList: Array<string>,
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
export class RoomDelV2Request extends jspb.Message {
|
|
260
|
+
getId(): string;
|
|
261
|
+
setId(value: string): void;
|
|
262
|
+
|
|
263
|
+
clearContactIdsList(): void;
|
|
264
|
+
getContactIdsList(): Array<string>;
|
|
265
|
+
setContactIdsList(value: Array<string>): void;
|
|
266
|
+
addContactIds(value: string, index?: number): string;
|
|
267
|
+
|
|
268
|
+
serializeBinary(): Uint8Array;
|
|
269
|
+
toObject(includeInstance?: boolean): RoomDelV2Request.AsObject;
|
|
270
|
+
static toObject(includeInstance: boolean, msg: RoomDelV2Request): RoomDelV2Request.AsObject;
|
|
271
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
272
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
273
|
+
static serializeBinaryToWriter(message: RoomDelV2Request, writer: jspb.BinaryWriter): void;
|
|
274
|
+
static deserializeBinary(bytes: Uint8Array): RoomDelV2Request;
|
|
275
|
+
static deserializeBinaryFromReader(message: RoomDelV2Request, reader: jspb.BinaryReader): RoomDelV2Request;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
export namespace RoomDelV2Request {
|
|
279
|
+
export type AsObject = {
|
|
280
|
+
id: string,
|
|
281
|
+
contactIdsList: Array<string>,
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
export class RoomDelV2Response extends jspb.Message {
|
|
286
|
+
clearSuccessIdsList(): void;
|
|
287
|
+
getSuccessIdsList(): Array<string>;
|
|
288
|
+
setSuccessIdsList(value: Array<string>): void;
|
|
289
|
+
addSuccessIds(value: string, index?: number): string;
|
|
290
|
+
|
|
291
|
+
clearFailedIdsList(): void;
|
|
292
|
+
getFailedIdsList(): Array<string>;
|
|
293
|
+
setFailedIdsList(value: Array<string>): void;
|
|
294
|
+
addFailedIds(value: string, index?: number): string;
|
|
295
|
+
|
|
296
|
+
clearFailedReasonsList(): void;
|
|
297
|
+
getFailedReasonsList(): Array<string>;
|
|
298
|
+
setFailedReasonsList(value: Array<string>): void;
|
|
299
|
+
addFailedReasons(value: string, index?: number): string;
|
|
300
|
+
|
|
301
|
+
serializeBinary(): Uint8Array;
|
|
302
|
+
toObject(includeInstance?: boolean): RoomDelV2Response.AsObject;
|
|
303
|
+
static toObject(includeInstance: boolean, msg: RoomDelV2Response): RoomDelV2Response.AsObject;
|
|
304
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
305
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
306
|
+
static serializeBinaryToWriter(message: RoomDelV2Response, writer: jspb.BinaryWriter): void;
|
|
307
|
+
static deserializeBinary(bytes: Uint8Array): RoomDelV2Response;
|
|
308
|
+
static deserializeBinaryFromReader(message: RoomDelV2Response, reader: jspb.BinaryReader): RoomDelV2Response;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
export namespace RoomDelV2Response {
|
|
312
|
+
export type AsObject = {
|
|
313
|
+
successIdsList: Array<string>,
|
|
314
|
+
failedIdsList: Array<string>,
|
|
315
|
+
failedReasonsList: Array<string>,
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
|
|
183
319
|
export class RoomAvatarRequest extends jspb.Message {
|
|
184
320
|
getId(): string;
|
|
185
321
|
setId(value: string): void;
|