@juzi/wechaty-grpc 1.0.15 → 1.0.16
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/contact_pb.d.ts +5 -6
- package/dist/cjs/out/wechaty/puppet/contact_pb.js +20 -26
- package/dist/cjs/out/wechaty/puppet/tag_pb.d.ts +37 -69
- package/dist/cjs/out/wechaty/puppet/tag_pb.js +156 -442
- package/dist/cjs/out/wechaty/puppet.openapi.yaml +21 -32
- package/dist/cjs/out/wechaty/puppet.swagger.json +21 -38
- package/dist/cjs/proto/wechaty/puppet/contact.proto +1 -3
- package/dist/cjs/proto/wechaty/puppet/tag.proto +9 -14
- package/dist/cjs/proto/wechaty/puppet.proto +1 -1
- package/dist/cjs/src/package-json.js +1 -1
- package/dist/esm/out/wechaty/puppet/contact_pb.d.ts +5 -6
- package/dist/esm/out/wechaty/puppet/contact_pb.js +20 -26
- package/dist/esm/out/wechaty/puppet/tag_pb.d.ts +37 -69
- package/dist/esm/out/wechaty/puppet/tag_pb.js +156 -442
- package/dist/esm/out/wechaty/puppet.openapi.yaml +21 -32
- package/dist/esm/out/wechaty/puppet.swagger.json +21 -38
- package/dist/esm/proto/wechaty/puppet/contact.proto +1 -3
- package/dist/esm/proto/wechaty/puppet/tag.proto +9 -14
- package/dist/esm/proto/wechaty/puppet.proto +1 -1
- package/dist/esm/src/package-json.js +1 -1
- package/out/wechaty/puppet/contact_pb.d.ts +5 -6
- package/out/wechaty/puppet/contact_pb.js +20 -26
- package/out/wechaty/puppet/tag_pb.d.ts +37 -69
- package/out/wechaty/puppet/tag_pb.js +156 -442
- package/out/wechaty/puppet.openapi.yaml +21 -32
- package/out/wechaty/puppet.swagger.json +21 -38
- package/package.json +1 -1
- package/src/package-json.ts +1 -1
|
@@ -35,30 +35,6 @@ export namespace TagPayload {
|
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
-
export class TagIdentifier extends jspb.Message {
|
|
39
|
-
getId(): string;
|
|
40
|
-
setId(value: string): void;
|
|
41
|
-
|
|
42
|
-
getGroupId(): string;
|
|
43
|
-
setGroupId(value: string): void;
|
|
44
|
-
|
|
45
|
-
serializeBinary(): Uint8Array;
|
|
46
|
-
toObject(includeInstance?: boolean): TagIdentifier.AsObject;
|
|
47
|
-
static toObject(includeInstance: boolean, msg: TagIdentifier): TagIdentifier.AsObject;
|
|
48
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
49
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
50
|
-
static serializeBinaryToWriter(message: TagIdentifier, writer: jspb.BinaryWriter): void;
|
|
51
|
-
static deserializeBinary(bytes: Uint8Array): TagIdentifier;
|
|
52
|
-
static deserializeBinaryFromReader(message: TagIdentifier, reader: jspb.BinaryReader): TagIdentifier;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
export namespace TagIdentifier {
|
|
56
|
-
export type AsObject = {
|
|
57
|
-
id: string,
|
|
58
|
-
groupId: string,
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
|
|
62
38
|
export class TagGroupPayload extends jspb.Message {
|
|
63
39
|
getId(): string;
|
|
64
40
|
setId(value: string): void;
|
|
@@ -88,10 +64,10 @@ export namespace TagGroupPayload {
|
|
|
88
64
|
}
|
|
89
65
|
|
|
90
66
|
export class TagContactTagAddRequest extends jspb.Message {
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
67
|
+
clearTagIdsList(): void;
|
|
68
|
+
getTagIdsList(): Array<string>;
|
|
69
|
+
setTagIdsList(value: Array<string>): void;
|
|
70
|
+
addTagIds(value: string, index?: number): string;
|
|
95
71
|
|
|
96
72
|
clearContactIdsList(): void;
|
|
97
73
|
getContactIdsList(): Array<string>;
|
|
@@ -110,7 +86,7 @@ export class TagContactTagAddRequest extends jspb.Message {
|
|
|
110
86
|
|
|
111
87
|
export namespace TagContactTagAddRequest {
|
|
112
88
|
export type AsObject = {
|
|
113
|
-
|
|
89
|
+
tagIdsList: Array<string>,
|
|
114
90
|
contactIdsList: Array<string>,
|
|
115
91
|
}
|
|
116
92
|
}
|
|
@@ -132,10 +108,10 @@ export namespace TagContactTagAddResponse {
|
|
|
132
108
|
}
|
|
133
109
|
|
|
134
110
|
export class TagContactTagRemoveRequest extends jspb.Message {
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
111
|
+
clearTagIdsList(): void;
|
|
112
|
+
getTagIdsList(): Array<string>;
|
|
113
|
+
setTagIdsList(value: Array<string>): void;
|
|
114
|
+
addTagIds(value: string, index?: number): string;
|
|
139
115
|
|
|
140
116
|
clearContactIdsList(): void;
|
|
141
117
|
getContactIdsList(): Array<string>;
|
|
@@ -154,7 +130,7 @@ export class TagContactTagRemoveRequest extends jspb.Message {
|
|
|
154
130
|
|
|
155
131
|
export namespace TagContactTagRemoveRequest {
|
|
156
132
|
export type AsObject = {
|
|
157
|
-
|
|
133
|
+
tagIdsList: Array<string>,
|
|
158
134
|
contactIdsList: Array<string>,
|
|
159
135
|
}
|
|
160
136
|
}
|
|
@@ -276,10 +252,8 @@ export namespace TagTagAddRequest {
|
|
|
276
252
|
}
|
|
277
253
|
|
|
278
254
|
export class TagTagAddResponse extends jspb.Message {
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
getTag(): TagIdentifier | undefined;
|
|
282
|
-
setTag(value?: TagIdentifier): void;
|
|
255
|
+
getTagId(): string;
|
|
256
|
+
setTagId(value: string): void;
|
|
283
257
|
|
|
284
258
|
serializeBinary(): Uint8Array;
|
|
285
259
|
toObject(includeInstance?: boolean): TagTagAddResponse.AsObject;
|
|
@@ -293,15 +267,13 @@ export class TagTagAddResponse extends jspb.Message {
|
|
|
293
267
|
|
|
294
268
|
export namespace TagTagAddResponse {
|
|
295
269
|
export type AsObject = {
|
|
296
|
-
|
|
270
|
+
tagId: string,
|
|
297
271
|
}
|
|
298
272
|
}
|
|
299
273
|
|
|
300
274
|
export class TagTagDeleteRequest extends jspb.Message {
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
getTag(): TagIdentifier | undefined;
|
|
304
|
-
setTag(value?: TagIdentifier): void;
|
|
275
|
+
getTagId(): string;
|
|
276
|
+
setTagId(value: string): void;
|
|
305
277
|
|
|
306
278
|
serializeBinary(): Uint8Array;
|
|
307
279
|
toObject(includeInstance?: boolean): TagTagDeleteRequest.AsObject;
|
|
@@ -315,7 +287,7 @@ export class TagTagDeleteRequest extends jspb.Message {
|
|
|
315
287
|
|
|
316
288
|
export namespace TagTagDeleteRequest {
|
|
317
289
|
export type AsObject = {
|
|
318
|
-
|
|
290
|
+
tagId: string,
|
|
319
291
|
}
|
|
320
292
|
}
|
|
321
293
|
|
|
@@ -394,10 +366,10 @@ export namespace TagGroupTagListRequest {
|
|
|
394
366
|
}
|
|
395
367
|
|
|
396
368
|
export class TagGroupTagListResponse extends jspb.Message {
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
369
|
+
clearTagIdsList(): void;
|
|
370
|
+
getTagIdsList(): Array<string>;
|
|
371
|
+
setTagIdsList(value: Array<string>): void;
|
|
372
|
+
addTagIds(value: string, index?: number): string;
|
|
401
373
|
|
|
402
374
|
serializeBinary(): Uint8Array;
|
|
403
375
|
toObject(includeInstance?: boolean): TagGroupTagListResponse.AsObject;
|
|
@@ -411,7 +383,7 @@ export class TagGroupTagListResponse extends jspb.Message {
|
|
|
411
383
|
|
|
412
384
|
export namespace TagGroupTagListResponse {
|
|
413
385
|
export type AsObject = {
|
|
414
|
-
|
|
386
|
+
tagIdsList: Array<string>,
|
|
415
387
|
}
|
|
416
388
|
}
|
|
417
389
|
|
|
@@ -432,10 +404,10 @@ export namespace TagTagListRequest {
|
|
|
432
404
|
}
|
|
433
405
|
|
|
434
406
|
export class TagTagListResponse extends jspb.Message {
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
407
|
+
clearTagIdsList(): void;
|
|
408
|
+
getTagIdsList(): Array<string>;
|
|
409
|
+
setTagIdsList(value: Array<string>): void;
|
|
410
|
+
addTagIds(value: string, index?: number): string;
|
|
439
411
|
|
|
440
412
|
serializeBinary(): Uint8Array;
|
|
441
413
|
toObject(includeInstance?: boolean): TagTagListResponse.AsObject;
|
|
@@ -449,7 +421,7 @@ export class TagTagListResponse extends jspb.Message {
|
|
|
449
421
|
|
|
450
422
|
export namespace TagTagListResponse {
|
|
451
423
|
export type AsObject = {
|
|
452
|
-
|
|
424
|
+
tagIdsList: Array<string>,
|
|
453
425
|
}
|
|
454
426
|
}
|
|
455
427
|
|
|
@@ -474,10 +446,10 @@ export namespace TagContactTagListRequest {
|
|
|
474
446
|
}
|
|
475
447
|
|
|
476
448
|
export class TagContactTagListResponse extends jspb.Message {
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
449
|
+
clearTagIdsList(): void;
|
|
450
|
+
getTagIdsList(): Array<string>;
|
|
451
|
+
setTagIdsList(value: Array<string>): void;
|
|
452
|
+
addTagIds(value: string, index?: number): string;
|
|
481
453
|
|
|
482
454
|
serializeBinary(): Uint8Array;
|
|
483
455
|
toObject(includeInstance?: boolean): TagContactTagListResponse.AsObject;
|
|
@@ -491,15 +463,13 @@ export class TagContactTagListResponse extends jspb.Message {
|
|
|
491
463
|
|
|
492
464
|
export namespace TagContactTagListResponse {
|
|
493
465
|
export type AsObject = {
|
|
494
|
-
|
|
466
|
+
tagIdsList: Array<string>,
|
|
495
467
|
}
|
|
496
468
|
}
|
|
497
469
|
|
|
498
470
|
export class TagTagContactListRequest extends jspb.Message {
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
getTag(): TagIdentifier | undefined;
|
|
502
|
-
setTag(value?: TagIdentifier): void;
|
|
471
|
+
getTagId(): string;
|
|
472
|
+
setTagId(value: string): void;
|
|
503
473
|
|
|
504
474
|
serializeBinary(): Uint8Array;
|
|
505
475
|
toObject(includeInstance?: boolean): TagTagContactListRequest.AsObject;
|
|
@@ -513,7 +483,7 @@ export class TagTagContactListRequest extends jspb.Message {
|
|
|
513
483
|
|
|
514
484
|
export namespace TagTagContactListRequest {
|
|
515
485
|
export type AsObject = {
|
|
516
|
-
|
|
486
|
+
tagId: string,
|
|
517
487
|
}
|
|
518
488
|
}
|
|
519
489
|
|
|
@@ -582,10 +552,8 @@ export namespace TagGroupPayloadResponse {
|
|
|
582
552
|
}
|
|
583
553
|
|
|
584
554
|
export class TagPayloadRequest extends jspb.Message {
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
getTag(): TagIdentifier | undefined;
|
|
588
|
-
setTag(value?: TagIdentifier): void;
|
|
555
|
+
getTagId(): string;
|
|
556
|
+
setTagId(value: string): void;
|
|
589
557
|
|
|
590
558
|
serializeBinary(): Uint8Array;
|
|
591
559
|
toObject(includeInstance?: boolean): TagPayloadRequest.AsObject;
|
|
@@ -599,7 +567,7 @@ export class TagPayloadRequest extends jspb.Message {
|
|
|
599
567
|
|
|
600
568
|
export namespace TagPayloadRequest {
|
|
601
569
|
export type AsObject = {
|
|
602
|
-
|
|
570
|
+
tagId: string,
|
|
603
571
|
}
|
|
604
572
|
}
|
|
605
573
|
|