@juzi/wechaty-grpc 1.0.77 → 1.0.79
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/tag_pb.d.ts +74 -20
- package/dist/cjs/out/wechaty/puppet/tag_pb.js +522 -48
- package/dist/cjs/out/wechaty/puppet.openapi.yaml +39 -9
- package/dist/cjs/out/wechaty/puppet.swagger.json +53 -9
- 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/tag.proto +18 -8
- package/dist/cjs/proto/wechaty/puppet.proto +1 -1
- package/dist/cjs/src/package-json.js +1 -1
- package/dist/esm/out/wechaty/puppet/tag_pb.d.ts +74 -20
- package/dist/esm/out/wechaty/puppet/tag_pb.js +522 -48
- package/dist/esm/out/wechaty/puppet.openapi.yaml +39 -9
- package/dist/esm/out/wechaty/puppet.swagger.json +53 -9
- 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/tag.proto +18 -8
- package/dist/esm/proto/wechaty/puppet.proto +1 -1
- package/dist/esm/src/package-json.js +1 -1
- package/out/wechaty/puppet/tag_pb.d.ts +74 -20
- package/out/wechaty/puppet/tag_pb.js +522 -48
- package/out/wechaty/puppet.openapi.yaml +39 -9
- package/out/wechaty/puppet.swagger.json +53 -9
- 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
|
@@ -227,13 +227,42 @@ export namespace TagGroupDeleteResponse {
|
|
|
227
227
|
}
|
|
228
228
|
}
|
|
229
229
|
|
|
230
|
-
export class
|
|
230
|
+
export class TagTagInfo extends jspb.Message {
|
|
231
|
+
getTagId(): string;
|
|
232
|
+
setTagId(value: string): void;
|
|
233
|
+
|
|
231
234
|
getTagName(): string;
|
|
232
235
|
setTagName(value: string): void;
|
|
233
236
|
|
|
237
|
+
serializeBinary(): Uint8Array;
|
|
238
|
+
toObject(includeInstance?: boolean): TagTagInfo.AsObject;
|
|
239
|
+
static toObject(includeInstance: boolean, msg: TagTagInfo): TagTagInfo.AsObject;
|
|
240
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
241
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
242
|
+
static serializeBinaryToWriter(message: TagTagInfo, writer: jspb.BinaryWriter): void;
|
|
243
|
+
static deserializeBinary(bytes: Uint8Array): TagTagInfo;
|
|
244
|
+
static deserializeBinaryFromReader(message: TagTagInfo, reader: jspb.BinaryReader): TagTagInfo;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
export namespace TagTagInfo {
|
|
248
|
+
export type AsObject = {
|
|
249
|
+
tagId: string,
|
|
250
|
+
tagName: string,
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
export class TagTagAddRequest extends jspb.Message {
|
|
255
|
+
getDeprecatedTagName(): string;
|
|
256
|
+
setDeprecatedTagName(value: string): void;
|
|
257
|
+
|
|
234
258
|
getTagGroupId(): string;
|
|
235
259
|
setTagGroupId(value: string): void;
|
|
236
260
|
|
|
261
|
+
clearTagNameList(): void;
|
|
262
|
+
getTagNameList(): Array<string>;
|
|
263
|
+
setTagNameList(value: Array<string>): void;
|
|
264
|
+
addTagName(value: string, index?: number): string;
|
|
265
|
+
|
|
237
266
|
serializeBinary(): Uint8Array;
|
|
238
267
|
toObject(includeInstance?: boolean): TagTagAddRequest.AsObject;
|
|
239
268
|
static toObject(includeInstance: boolean, msg: TagTagAddRequest): TagTagAddRequest.AsObject;
|
|
@@ -246,14 +275,20 @@ export class TagTagAddRequest extends jspb.Message {
|
|
|
246
275
|
|
|
247
276
|
export namespace TagTagAddRequest {
|
|
248
277
|
export type AsObject = {
|
|
249
|
-
|
|
278
|
+
deprecatedTagName: string,
|
|
250
279
|
tagGroupId: string,
|
|
280
|
+
tagNameList: Array<string>,
|
|
251
281
|
}
|
|
252
282
|
}
|
|
253
283
|
|
|
254
284
|
export class TagTagAddResponse extends jspb.Message {
|
|
255
|
-
|
|
256
|
-
|
|
285
|
+
getDeprecatedTagId(): string;
|
|
286
|
+
setDeprecatedTagId(value: string): void;
|
|
287
|
+
|
|
288
|
+
clearTagInfoList(): void;
|
|
289
|
+
getTagInfoList(): Array<TagTagInfo>;
|
|
290
|
+
setTagInfoList(value: Array<TagTagInfo>): void;
|
|
291
|
+
addTagInfo(value?: TagTagInfo, index?: number): TagTagInfo;
|
|
257
292
|
|
|
258
293
|
serializeBinary(): Uint8Array;
|
|
259
294
|
toObject(includeInstance?: boolean): TagTagAddResponse.AsObject;
|
|
@@ -267,13 +302,19 @@ export class TagTagAddResponse extends jspb.Message {
|
|
|
267
302
|
|
|
268
303
|
export namespace TagTagAddResponse {
|
|
269
304
|
export type AsObject = {
|
|
270
|
-
|
|
305
|
+
deprecatedTagId: string,
|
|
306
|
+
tagInfoList: Array<TagTagInfo.AsObject>,
|
|
271
307
|
}
|
|
272
308
|
}
|
|
273
309
|
|
|
274
310
|
export class TagTagDeleteRequest extends jspb.Message {
|
|
275
|
-
|
|
276
|
-
|
|
311
|
+
getDeprecatedTagId(): string;
|
|
312
|
+
setDeprecatedTagId(value: string): void;
|
|
313
|
+
|
|
314
|
+
clearTagIdList(): void;
|
|
315
|
+
getTagIdList(): Array<string>;
|
|
316
|
+
setTagIdList(value: Array<string>): void;
|
|
317
|
+
addTagId(value: string, index?: number): string;
|
|
277
318
|
|
|
278
319
|
serializeBinary(): Uint8Array;
|
|
279
320
|
toObject(includeInstance?: boolean): TagTagDeleteRequest.AsObject;
|
|
@@ -287,7 +328,8 @@ export class TagTagDeleteRequest extends jspb.Message {
|
|
|
287
328
|
|
|
288
329
|
export namespace TagTagDeleteRequest {
|
|
289
330
|
export type AsObject = {
|
|
290
|
-
|
|
331
|
+
deprecatedTagId: string,
|
|
332
|
+
tagIdList: Array<string>,
|
|
291
333
|
}
|
|
292
334
|
}
|
|
293
335
|
|
|
@@ -308,11 +350,16 @@ export namespace TagTagDeleteResponse {
|
|
|
308
350
|
}
|
|
309
351
|
|
|
310
352
|
export class TagTagModifyRequest extends jspb.Message {
|
|
311
|
-
|
|
312
|
-
|
|
353
|
+
getDeprecatedTagId(): string;
|
|
354
|
+
setDeprecatedTagId(value: string): void;
|
|
313
355
|
|
|
314
|
-
|
|
315
|
-
|
|
356
|
+
getDeprecatedTagNewName(): string;
|
|
357
|
+
setDeprecatedTagNewName(value: string): void;
|
|
358
|
+
|
|
359
|
+
clearTagNewInfoList(): void;
|
|
360
|
+
getTagNewInfoList(): Array<TagTagInfo>;
|
|
361
|
+
setTagNewInfoList(value: Array<TagTagInfo>): void;
|
|
362
|
+
addTagNewInfo(value?: TagTagInfo, index?: number): TagTagInfo;
|
|
316
363
|
|
|
317
364
|
serializeBinary(): Uint8Array;
|
|
318
365
|
toObject(includeInstance?: boolean): TagTagModifyRequest.AsObject;
|
|
@@ -326,17 +373,23 @@ export class TagTagModifyRequest extends jspb.Message {
|
|
|
326
373
|
|
|
327
374
|
export namespace TagTagModifyRequest {
|
|
328
375
|
export type AsObject = {
|
|
329
|
-
|
|
330
|
-
|
|
376
|
+
deprecatedTagId: string,
|
|
377
|
+
deprecatedTagNewName: string,
|
|
378
|
+
tagNewInfoList: Array<TagTagInfo.AsObject>,
|
|
331
379
|
}
|
|
332
380
|
}
|
|
333
381
|
|
|
334
382
|
export class TagTagModifyResponse extends jspb.Message {
|
|
335
|
-
|
|
336
|
-
|
|
383
|
+
getDeprecatedTagId(): string;
|
|
384
|
+
setDeprecatedTagId(value: string): void;
|
|
337
385
|
|
|
338
|
-
|
|
339
|
-
|
|
386
|
+
getDeprecatedTagName(): string;
|
|
387
|
+
setDeprecatedTagName(value: string): void;
|
|
388
|
+
|
|
389
|
+
clearTagInfoList(): void;
|
|
390
|
+
getTagInfoList(): Array<TagTagInfo>;
|
|
391
|
+
setTagInfoList(value: Array<TagTagInfo>): void;
|
|
392
|
+
addTagInfo(value?: TagTagInfo, index?: number): TagTagInfo;
|
|
340
393
|
|
|
341
394
|
serializeBinary(): Uint8Array;
|
|
342
395
|
toObject(includeInstance?: boolean): TagTagModifyResponse.AsObject;
|
|
@@ -350,8 +403,9 @@ export class TagTagModifyResponse extends jspb.Message {
|
|
|
350
403
|
|
|
351
404
|
export namespace TagTagModifyResponse {
|
|
352
405
|
export type AsObject = {
|
|
353
|
-
|
|
354
|
-
|
|
406
|
+
deprecatedTagId: string,
|
|
407
|
+
deprecatedTagName: string,
|
|
408
|
+
tagInfoList: Array<TagTagInfo.AsObject>,
|
|
355
409
|
}
|
|
356
410
|
}
|
|
357
411
|
|