@juzi/wechaty-grpc 1.0.12 → 1.0.15
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/base_pb.d.ts +2 -0
- package/dist/cjs/out/wechaty/puppet/base_pb.js +3 -1
- package/dist/cjs/out/wechaty/puppet/contact_pb.d.ts +7 -0
- package/dist/cjs/out/wechaty/puppet/contact_pb.js +57 -2
- package/dist/cjs/out/wechaty/puppet/event_pb.d.ts +2 -0
- package/dist/cjs/out/wechaty/puppet/event_pb.js +3 -1
- package/dist/cjs/out/wechaty/puppet/tag_pb.d.ts +123 -35
- package/dist/cjs/out/wechaty/puppet/tag_pb.js +821 -145
- package/dist/cjs/out/wechaty/puppet.openapi.yaml +94 -14
- package/dist/cjs/out/wechaty/puppet.swagger.json +140 -21
- 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/base.proto +2 -0
- package/dist/cjs/proto/wechaty/puppet/contact.proto +4 -0
- package/dist/cjs/proto/wechaty/puppet/event.proto +2 -0
- package/dist/cjs/proto/wechaty/puppet/tag.proto +26 -9
- package/dist/cjs/proto/wechaty/puppet.proto +14 -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/base_pb.d.ts +2 -0
- package/dist/esm/out/wechaty/puppet/base_pb.js +3 -1
- package/dist/esm/out/wechaty/puppet/contact_pb.d.ts +7 -0
- package/dist/esm/out/wechaty/puppet/contact_pb.js +57 -2
- package/dist/esm/out/wechaty/puppet/event_pb.d.ts +2 -0
- package/dist/esm/out/wechaty/puppet/event_pb.js +3 -1
- package/dist/esm/out/wechaty/puppet/tag_pb.d.ts +123 -35
- package/dist/esm/out/wechaty/puppet/tag_pb.js +821 -145
- package/dist/esm/out/wechaty/puppet.openapi.yaml +94 -14
- package/dist/esm/out/wechaty/puppet.swagger.json +140 -21
- 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/base.proto +2 -0
- package/dist/esm/proto/wechaty/puppet/contact.proto +4 -0
- package/dist/esm/proto/wechaty/puppet/event.proto +2 -0
- package/dist/esm/proto/wechaty/puppet/tag.proto +26 -9
- package/dist/esm/proto/wechaty/puppet.proto +14 -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/base_pb.d.ts +2 -0
- package/out/wechaty/puppet/base_pb.js +3 -1
- package/out/wechaty/puppet/contact_pb.d.ts +7 -0
- package/out/wechaty/puppet/contact_pb.js +57 -2
- package/out/wechaty/puppet/event_pb.d.ts +2 -0
- package/out/wechaty/puppet/event_pb.js +3 -1
- package/out/wechaty/puppet/tag_pb.d.ts +123 -35
- package/out/wechaty/puppet/tag_pb.js +821 -145
- package/out/wechaty/puppet.openapi.yaml +94 -14
- package/out/wechaty/puppet.swagger.json +140 -21
- 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
|
@@ -1893,7 +1893,9 @@ proto.wechaty.puppet.PayloadType = {
|
|
|
1893
1893
|
PAYLOAD_TYPE_CONTACT: 2,
|
|
1894
1894
|
PAYLOAD_TYPE_ROOM: 3,
|
|
1895
1895
|
PAYLOAD_TYPE_ROOM_MEMBER: 4,
|
|
1896
|
-
PAYLOAD_TYPE_FRIENDSHIP: 5
|
|
1896
|
+
PAYLOAD_TYPE_FRIENDSHIP: 5,
|
|
1897
|
+
PAYLOAD_TYPE_TAG: 6,
|
|
1898
|
+
PAYLOAD_TYPE_TAG_GROUP: 7
|
|
1897
1899
|
};
|
|
1898
1900
|
|
|
1899
1901
|
goog.object.extend(exports, proto.wechaty.puppet);
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
import * as jspb from "google-protobuf";
|
|
5
5
|
import * as google_protobuf_wrappers_pb from "google-protobuf/google/protobuf/wrappers_pb";
|
|
6
|
+
import * as wechaty_puppet_tag_pb from "../../wechaty/puppet/tag_pb";
|
|
6
7
|
|
|
7
8
|
export class ContactListRequest extends jspb.Message {
|
|
8
9
|
serializeBinary(): Uint8Array;
|
|
@@ -122,6 +123,11 @@ export class ContactPayloadResponse extends jspb.Message {
|
|
|
122
123
|
getAdditionalInfo(): string;
|
|
123
124
|
setAdditionalInfo(value: string): void;
|
|
124
125
|
|
|
126
|
+
clearTagsList(): void;
|
|
127
|
+
getTagsList(): Array<wechaty_puppet_tag_pb.TagIdentifier>;
|
|
128
|
+
setTagsList(value: Array<wechaty_puppet_tag_pb.TagIdentifier>): void;
|
|
129
|
+
addTags(value?: wechaty_puppet_tag_pb.TagIdentifier, index?: number): wechaty_puppet_tag_pb.TagIdentifier;
|
|
130
|
+
|
|
125
131
|
serializeBinary(): Uint8Array;
|
|
126
132
|
toObject(includeInstance?: boolean): ContactPayloadResponse.AsObject;
|
|
127
133
|
static toObject(includeInstance: boolean, msg: ContactPayloadResponse): ContactPayloadResponse.AsObject;
|
|
@@ -153,6 +159,7 @@ export namespace ContactPayloadResponse {
|
|
|
153
159
|
coworker: boolean,
|
|
154
160
|
phonesList: Array<string>,
|
|
155
161
|
additionalInfo: string,
|
|
162
|
+
tagsList: Array<wechaty_puppet_tag_pb.TagIdentifier.AsObject>,
|
|
156
163
|
}
|
|
157
164
|
}
|
|
158
165
|
|
|
@@ -17,6 +17,8 @@ var global = (function() { return this || window || global || self || Function('
|
|
|
17
17
|
|
|
18
18
|
var google_protobuf_wrappers_pb = require('google-protobuf/google/protobuf/wrappers_pb.js');
|
|
19
19
|
goog.object.extend(proto, google_protobuf_wrappers_pb);
|
|
20
|
+
var wechaty_puppet_tag_pb = require('../../wechaty/puppet/tag_pb.js');
|
|
21
|
+
goog.object.extend(proto, wechaty_puppet_tag_pb);
|
|
20
22
|
goog.exportSymbol('proto.wechaty.puppet.ContactAliasRequest', null, global);
|
|
21
23
|
goog.exportSymbol('proto.wechaty.puppet.ContactAliasResponse', null, global);
|
|
22
24
|
goog.exportSymbol('proto.wechaty.puppet.ContactAvatarRequest', null, global);
|
|
@@ -852,7 +854,7 @@ proto.wechaty.puppet.ContactPayloadRequest.prototype.setId = function(value) {
|
|
|
852
854
|
* @private {!Array<number>}
|
|
853
855
|
* @const
|
|
854
856
|
*/
|
|
855
|
-
proto.wechaty.puppet.ContactPayloadResponse.repeatedFields_ = [18];
|
|
857
|
+
proto.wechaty.puppet.ContactPayloadResponse.repeatedFields_ = [18,20];
|
|
856
858
|
|
|
857
859
|
|
|
858
860
|
|
|
@@ -903,7 +905,9 @@ proto.wechaty.puppet.ContactPayloadResponse.toObject = function(includeInstance,
|
|
|
903
905
|
description: jspb.Message.getFieldWithDefault(msg, 16, ""),
|
|
904
906
|
coworker: jspb.Message.getBooleanFieldWithDefault(msg, 17, false),
|
|
905
907
|
phonesList: (f = jspb.Message.getRepeatedField(msg, 18)) == null ? undefined : f,
|
|
906
|
-
additionalInfo: jspb.Message.getFieldWithDefault(msg, 19, "")
|
|
908
|
+
additionalInfo: jspb.Message.getFieldWithDefault(msg, 19, ""),
|
|
909
|
+
tagsList: jspb.Message.toObjectList(msg.getTagsList(),
|
|
910
|
+
wechaty_puppet_tag_pb.TagIdentifier.toObject, includeInstance)
|
|
907
911
|
};
|
|
908
912
|
|
|
909
913
|
if (includeInstance) {
|
|
@@ -1016,6 +1020,11 @@ proto.wechaty.puppet.ContactPayloadResponse.deserializeBinaryFromReader = functi
|
|
|
1016
1020
|
var value = /** @type {string} */ (reader.readString());
|
|
1017
1021
|
msg.setAdditionalInfo(value);
|
|
1018
1022
|
break;
|
|
1023
|
+
case 20:
|
|
1024
|
+
var value = new wechaty_puppet_tag_pb.TagIdentifier;
|
|
1025
|
+
reader.readMessage(value,wechaty_puppet_tag_pb.TagIdentifier.deserializeBinaryFromReader);
|
|
1026
|
+
msg.addTags(value);
|
|
1027
|
+
break;
|
|
1019
1028
|
default:
|
|
1020
1029
|
reader.skipField();
|
|
1021
1030
|
break;
|
|
@@ -1178,6 +1187,14 @@ proto.wechaty.puppet.ContactPayloadResponse.serializeBinaryToWriter = function(m
|
|
|
1178
1187
|
f
|
|
1179
1188
|
);
|
|
1180
1189
|
}
|
|
1190
|
+
f = message.getTagsList();
|
|
1191
|
+
if (f.length > 0) {
|
|
1192
|
+
writer.writeRepeatedMessage(
|
|
1193
|
+
20,
|
|
1194
|
+
f,
|
|
1195
|
+
wechaty_puppet_tag_pb.TagIdentifier.serializeBinaryToWriter
|
|
1196
|
+
);
|
|
1197
|
+
}
|
|
1181
1198
|
};
|
|
1182
1199
|
|
|
1183
1200
|
|
|
@@ -1542,6 +1559,44 @@ proto.wechaty.puppet.ContactPayloadResponse.prototype.setAdditionalInfo = functi
|
|
|
1542
1559
|
};
|
|
1543
1560
|
|
|
1544
1561
|
|
|
1562
|
+
/**
|
|
1563
|
+
* repeated TagIdentifier tags = 20;
|
|
1564
|
+
* @return {!Array<!proto.wechaty.puppet.TagIdentifier>}
|
|
1565
|
+
*/
|
|
1566
|
+
proto.wechaty.puppet.ContactPayloadResponse.prototype.getTagsList = function() {
|
|
1567
|
+
return /** @type{!Array<!proto.wechaty.puppet.TagIdentifier>} */ (
|
|
1568
|
+
jspb.Message.getRepeatedWrapperField(this, wechaty_puppet_tag_pb.TagIdentifier, 20));
|
|
1569
|
+
};
|
|
1570
|
+
|
|
1571
|
+
|
|
1572
|
+
/**
|
|
1573
|
+
* @param {!Array<!proto.wechaty.puppet.TagIdentifier>} value
|
|
1574
|
+
* @return {!proto.wechaty.puppet.ContactPayloadResponse} returns this
|
|
1575
|
+
*/
|
|
1576
|
+
proto.wechaty.puppet.ContactPayloadResponse.prototype.setTagsList = function(value) {
|
|
1577
|
+
return jspb.Message.setRepeatedWrapperField(this, 20, value);
|
|
1578
|
+
};
|
|
1579
|
+
|
|
1580
|
+
|
|
1581
|
+
/**
|
|
1582
|
+
* @param {!proto.wechaty.puppet.TagIdentifier=} opt_value
|
|
1583
|
+
* @param {number=} opt_index
|
|
1584
|
+
* @return {!proto.wechaty.puppet.TagIdentifier}
|
|
1585
|
+
*/
|
|
1586
|
+
proto.wechaty.puppet.ContactPayloadResponse.prototype.addTags = function(opt_value, opt_index) {
|
|
1587
|
+
return jspb.Message.addToRepeatedWrapperField(this, 20, opt_value, proto.wechaty.puppet.TagIdentifier, opt_index);
|
|
1588
|
+
};
|
|
1589
|
+
|
|
1590
|
+
|
|
1591
|
+
/**
|
|
1592
|
+
* Clears the list making it empty but non-null.
|
|
1593
|
+
* @return {!proto.wechaty.puppet.ContactPayloadResponse} returns this
|
|
1594
|
+
*/
|
|
1595
|
+
proto.wechaty.puppet.ContactPayloadResponse.prototype.clearTagsList = function() {
|
|
1596
|
+
return this.setTagsList([]);
|
|
1597
|
+
};
|
|
1598
|
+
|
|
1599
|
+
|
|
1545
1600
|
|
|
1546
1601
|
|
|
1547
1602
|
|
|
@@ -341,7 +341,9 @@ proto.wechaty.puppet.EventType = {
|
|
|
341
341
|
EVENT_TYPE_RESET: 24,
|
|
342
342
|
EVENT_TYPE_LOGIN: 25,
|
|
343
343
|
EVENT_TYPE_LOGOUT: 26,
|
|
344
|
-
EVENT_TYPE_DIRTY: 27
|
|
344
|
+
EVENT_TYPE_DIRTY: 27,
|
|
345
|
+
EVENT_TYPE_TAG: 28,
|
|
346
|
+
EVENT_TYPE_TAG_GROUP: 29
|
|
345
347
|
};
|
|
346
348
|
|
|
347
349
|
goog.object.extend(exports, proto.wechaty.puppet);
|
|
@@ -66,6 +66,9 @@ export class TagGroupPayload extends jspb.Message {
|
|
|
66
66
|
getName(): string;
|
|
67
67
|
setName(value: string): void;
|
|
68
68
|
|
|
69
|
+
getType(): TagTypeMap[keyof TagTypeMap];
|
|
70
|
+
setType(value: TagTypeMap[keyof TagTypeMap]): void;
|
|
71
|
+
|
|
69
72
|
serializeBinary(): Uint8Array;
|
|
70
73
|
toObject(includeInstance?: boolean): TagGroupPayload.AsObject;
|
|
71
74
|
static toObject(includeInstance: boolean, msg: TagGroupPayload): TagGroupPayload.AsObject;
|
|
@@ -80,6 +83,7 @@ export namespace TagGroupPayload {
|
|
|
80
83
|
export type AsObject = {
|
|
81
84
|
id: string,
|
|
82
85
|
name: string,
|
|
86
|
+
type: TagTypeMap[keyof TagTypeMap],
|
|
83
87
|
}
|
|
84
88
|
}
|
|
85
89
|
|
|
@@ -192,10 +196,8 @@ export namespace TagGroupAddRequest {
|
|
|
192
196
|
}
|
|
193
197
|
|
|
194
198
|
export class TagGroupAddResponse extends jspb.Message {
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
getPayload(): TagGroupPayload | undefined;
|
|
198
|
-
setPayload(value?: TagGroupPayload): void;
|
|
199
|
+
getTagGroupId(): string;
|
|
200
|
+
setTagGroupId(value: string): void;
|
|
199
201
|
|
|
200
202
|
serializeBinary(): Uint8Array;
|
|
201
203
|
toObject(includeInstance?: boolean): TagGroupAddResponse.AsObject;
|
|
@@ -209,7 +211,7 @@ export class TagGroupAddResponse extends jspb.Message {
|
|
|
209
211
|
|
|
210
212
|
export namespace TagGroupAddResponse {
|
|
211
213
|
export type AsObject = {
|
|
212
|
-
|
|
214
|
+
tagGroupId: string,
|
|
213
215
|
}
|
|
214
216
|
}
|
|
215
217
|
|
|
@@ -274,10 +276,10 @@ export namespace TagTagAddRequest {
|
|
|
274
276
|
}
|
|
275
277
|
|
|
276
278
|
export class TagTagAddResponse extends jspb.Message {
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
279
|
+
hasTag(): boolean;
|
|
280
|
+
clearTag(): void;
|
|
281
|
+
getTag(): TagIdentifier | undefined;
|
|
282
|
+
setTag(value?: TagIdentifier): void;
|
|
281
283
|
|
|
282
284
|
serializeBinary(): Uint8Array;
|
|
283
285
|
toObject(includeInstance?: boolean): TagTagAddResponse.AsObject;
|
|
@@ -291,7 +293,7 @@ export class TagTagAddResponse extends jspb.Message {
|
|
|
291
293
|
|
|
292
294
|
export namespace TagTagAddResponse {
|
|
293
295
|
export type AsObject = {
|
|
294
|
-
|
|
296
|
+
tag?: TagIdentifier.AsObject,
|
|
295
297
|
}
|
|
296
298
|
}
|
|
297
299
|
|
|
@@ -350,10 +352,10 @@ export namespace TagGroupListRequest {
|
|
|
350
352
|
}
|
|
351
353
|
|
|
352
354
|
export class TagGroupListResponse extends jspb.Message {
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
355
|
+
clearTagGroupIdsList(): void;
|
|
356
|
+
getTagGroupIdsList(): Array<string>;
|
|
357
|
+
setTagGroupIdsList(value: Array<string>): void;
|
|
358
|
+
addTagGroupIds(value: string, index?: number): string;
|
|
357
359
|
|
|
358
360
|
serializeBinary(): Uint8Array;
|
|
359
361
|
toObject(includeInstance?: boolean): TagGroupListResponse.AsObject;
|
|
@@ -367,7 +369,7 @@ export class TagGroupListResponse extends jspb.Message {
|
|
|
367
369
|
|
|
368
370
|
export namespace TagGroupListResponse {
|
|
369
371
|
export type AsObject = {
|
|
370
|
-
|
|
372
|
+
tagGroupIdsList: Array<string>,
|
|
371
373
|
}
|
|
372
374
|
}
|
|
373
375
|
|
|
@@ -392,10 +394,10 @@ export namespace TagGroupTagListRequest {
|
|
|
392
394
|
}
|
|
393
395
|
|
|
394
396
|
export class TagGroupTagListResponse extends jspb.Message {
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
397
|
+
clearTagsList(): void;
|
|
398
|
+
getTagsList(): Array<TagIdentifier>;
|
|
399
|
+
setTagsList(value: Array<TagIdentifier>): void;
|
|
400
|
+
addTags(value?: TagIdentifier, index?: number): TagIdentifier;
|
|
399
401
|
|
|
400
402
|
serializeBinary(): Uint8Array;
|
|
401
403
|
toObject(includeInstance?: boolean): TagGroupTagListResponse.AsObject;
|
|
@@ -409,7 +411,7 @@ export class TagGroupTagListResponse extends jspb.Message {
|
|
|
409
411
|
|
|
410
412
|
export namespace TagGroupTagListResponse {
|
|
411
413
|
export type AsObject = {
|
|
412
|
-
|
|
414
|
+
tagsList: Array<TagIdentifier.AsObject>,
|
|
413
415
|
}
|
|
414
416
|
}
|
|
415
417
|
|
|
@@ -430,10 +432,10 @@ export namespace TagTagListRequest {
|
|
|
430
432
|
}
|
|
431
433
|
|
|
432
434
|
export class TagTagListResponse extends jspb.Message {
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
435
|
+
clearTagsList(): void;
|
|
436
|
+
getTagsList(): Array<TagIdentifier>;
|
|
437
|
+
setTagsList(value: Array<TagIdentifier>): void;
|
|
438
|
+
addTags(value?: TagIdentifier, index?: number): TagIdentifier;
|
|
437
439
|
|
|
438
440
|
serializeBinary(): Uint8Array;
|
|
439
441
|
toObject(includeInstance?: boolean): TagTagListResponse.AsObject;
|
|
@@ -447,7 +449,7 @@ export class TagTagListResponse extends jspb.Message {
|
|
|
447
449
|
|
|
448
450
|
export namespace TagTagListResponse {
|
|
449
451
|
export type AsObject = {
|
|
450
|
-
|
|
452
|
+
tagsList: Array<TagIdentifier.AsObject>,
|
|
451
453
|
}
|
|
452
454
|
}
|
|
453
455
|
|
|
@@ -472,10 +474,10 @@ export namespace TagContactTagListRequest {
|
|
|
472
474
|
}
|
|
473
475
|
|
|
474
476
|
export class TagContactTagListResponse extends jspb.Message {
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
477
|
+
clearTagsList(): void;
|
|
478
|
+
getTagsList(): Array<TagIdentifier>;
|
|
479
|
+
setTagsList(value: Array<TagIdentifier>): void;
|
|
480
|
+
addTags(value?: TagIdentifier, index?: number): TagIdentifier;
|
|
479
481
|
|
|
480
482
|
serializeBinary(): Uint8Array;
|
|
481
483
|
toObject(includeInstance?: boolean): TagContactTagListResponse.AsObject;
|
|
@@ -489,7 +491,7 @@ export class TagContactTagListResponse extends jspb.Message {
|
|
|
489
491
|
|
|
490
492
|
export namespace TagContactTagListResponse {
|
|
491
493
|
export type AsObject = {
|
|
492
|
-
|
|
494
|
+
tagsList: Array<TagIdentifier.AsObject>,
|
|
493
495
|
}
|
|
494
496
|
}
|
|
495
497
|
|
|
@@ -516,10 +518,10 @@ export namespace TagTagContactListRequest {
|
|
|
516
518
|
}
|
|
517
519
|
|
|
518
520
|
export class TagTagContactListResponse extends jspb.Message {
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
521
|
+
clearContactIdsList(): void;
|
|
522
|
+
getContactIdsList(): Array<string>;
|
|
523
|
+
setContactIdsList(value: Array<string>): void;
|
|
524
|
+
addContactIds(value: string, index?: number): string;
|
|
523
525
|
|
|
524
526
|
serializeBinary(): Uint8Array;
|
|
525
527
|
toObject(includeInstance?: boolean): TagTagContactListResponse.AsObject;
|
|
@@ -533,7 +535,93 @@ export class TagTagContactListResponse extends jspb.Message {
|
|
|
533
535
|
|
|
534
536
|
export namespace TagTagContactListResponse {
|
|
535
537
|
export type AsObject = {
|
|
536
|
-
|
|
538
|
+
contactIdsList: Array<string>,
|
|
539
|
+
}
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
export class TagGroupPayloadRequest extends jspb.Message {
|
|
543
|
+
getGroupId(): string;
|
|
544
|
+
setGroupId(value: string): void;
|
|
545
|
+
|
|
546
|
+
serializeBinary(): Uint8Array;
|
|
547
|
+
toObject(includeInstance?: boolean): TagGroupPayloadRequest.AsObject;
|
|
548
|
+
static toObject(includeInstance: boolean, msg: TagGroupPayloadRequest): TagGroupPayloadRequest.AsObject;
|
|
549
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
550
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
551
|
+
static serializeBinaryToWriter(message: TagGroupPayloadRequest, writer: jspb.BinaryWriter): void;
|
|
552
|
+
static deserializeBinary(bytes: Uint8Array): TagGroupPayloadRequest;
|
|
553
|
+
static deserializeBinaryFromReader(message: TagGroupPayloadRequest, reader: jspb.BinaryReader): TagGroupPayloadRequest;
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
export namespace TagGroupPayloadRequest {
|
|
557
|
+
export type AsObject = {
|
|
558
|
+
groupId: string,
|
|
559
|
+
}
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
export class TagGroupPayloadResponse extends jspb.Message {
|
|
563
|
+
hasPayload(): boolean;
|
|
564
|
+
clearPayload(): void;
|
|
565
|
+
getPayload(): TagGroupPayload | undefined;
|
|
566
|
+
setPayload(value?: TagGroupPayload): void;
|
|
567
|
+
|
|
568
|
+
serializeBinary(): Uint8Array;
|
|
569
|
+
toObject(includeInstance?: boolean): TagGroupPayloadResponse.AsObject;
|
|
570
|
+
static toObject(includeInstance: boolean, msg: TagGroupPayloadResponse): TagGroupPayloadResponse.AsObject;
|
|
571
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
572
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
573
|
+
static serializeBinaryToWriter(message: TagGroupPayloadResponse, writer: jspb.BinaryWriter): void;
|
|
574
|
+
static deserializeBinary(bytes: Uint8Array): TagGroupPayloadResponse;
|
|
575
|
+
static deserializeBinaryFromReader(message: TagGroupPayloadResponse, reader: jspb.BinaryReader): TagGroupPayloadResponse;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
export namespace TagGroupPayloadResponse {
|
|
579
|
+
export type AsObject = {
|
|
580
|
+
payload?: TagGroupPayload.AsObject,
|
|
581
|
+
}
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
export class TagPayloadRequest extends jspb.Message {
|
|
585
|
+
hasTag(): boolean;
|
|
586
|
+
clearTag(): void;
|
|
587
|
+
getTag(): TagIdentifier | undefined;
|
|
588
|
+
setTag(value?: TagIdentifier): void;
|
|
589
|
+
|
|
590
|
+
serializeBinary(): Uint8Array;
|
|
591
|
+
toObject(includeInstance?: boolean): TagPayloadRequest.AsObject;
|
|
592
|
+
static toObject(includeInstance: boolean, msg: TagPayloadRequest): TagPayloadRequest.AsObject;
|
|
593
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
594
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
595
|
+
static serializeBinaryToWriter(message: TagPayloadRequest, writer: jspb.BinaryWriter): void;
|
|
596
|
+
static deserializeBinary(bytes: Uint8Array): TagPayloadRequest;
|
|
597
|
+
static deserializeBinaryFromReader(message: TagPayloadRequest, reader: jspb.BinaryReader): TagPayloadRequest;
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
export namespace TagPayloadRequest {
|
|
601
|
+
export type AsObject = {
|
|
602
|
+
tag?: TagIdentifier.AsObject,
|
|
603
|
+
}
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
export class TagPayloadResponse extends jspb.Message {
|
|
607
|
+
hasPayload(): boolean;
|
|
608
|
+
clearPayload(): void;
|
|
609
|
+
getPayload(): TagPayload | undefined;
|
|
610
|
+
setPayload(value?: TagPayload): void;
|
|
611
|
+
|
|
612
|
+
serializeBinary(): Uint8Array;
|
|
613
|
+
toObject(includeInstance?: boolean): TagPayloadResponse.AsObject;
|
|
614
|
+
static toObject(includeInstance: boolean, msg: TagPayloadResponse): TagPayloadResponse.AsObject;
|
|
615
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
616
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
617
|
+
static serializeBinaryToWriter(message: TagPayloadResponse, writer: jspb.BinaryWriter): void;
|
|
618
|
+
static deserializeBinary(bytes: Uint8Array): TagPayloadResponse;
|
|
619
|
+
static deserializeBinaryFromReader(message: TagPayloadResponse, reader: jspb.BinaryReader): TagPayloadResponse;
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
export namespace TagPayloadResponse {
|
|
623
|
+
export type AsObject = {
|
|
624
|
+
payload?: TagPayload.AsObject,
|
|
537
625
|
}
|
|
538
626
|
}
|
|
539
627
|
|