@juzi/wechaty-grpc 1.0.11 → 1.0.14
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/event_pb.d.ts +1 -0
- package/dist/cjs/out/wechaty/puppet/event_pb.js +2 -1
- package/dist/cjs/out/wechaty/puppet/room_pb.d.ts +6 -0
- package/dist/cjs/out/wechaty/puppet/room_pb.js +58 -2
- package/dist/cjs/out/wechaty/puppet/tag_pb.d.ts +181 -73
- package/dist/cjs/out/wechaty/puppet/tag_pb.js +1472 -594
- package/dist/cjs/out/wechaty/puppet.openapi.yaml +216 -112
- package/dist/cjs/out/wechaty/puppet.swagger.json +312 -144
- 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/event.proto +1 -0
- package/dist/cjs/proto/wechaty/puppet/room.proto +14 -13
- package/dist/cjs/proto/wechaty/puppet/tag.proto +39 -21
- package/dist/cjs/proto/wechaty/puppet.proto +29 -9
- 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/event_pb.d.ts +1 -0
- package/dist/esm/out/wechaty/puppet/event_pb.js +2 -1
- package/dist/esm/out/wechaty/puppet/room_pb.d.ts +6 -0
- package/dist/esm/out/wechaty/puppet/room_pb.js +58 -2
- package/dist/esm/out/wechaty/puppet/tag_pb.d.ts +181 -73
- package/dist/esm/out/wechaty/puppet/tag_pb.js +1472 -594
- package/dist/esm/out/wechaty/puppet.openapi.yaml +216 -112
- package/dist/esm/out/wechaty/puppet.swagger.json +312 -144
- 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/event.proto +1 -0
- package/dist/esm/proto/wechaty/puppet/room.proto +14 -13
- package/dist/esm/proto/wechaty/puppet/tag.proto +39 -21
- package/dist/esm/proto/wechaty/puppet.proto +29 -9
- 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/event_pb.d.ts +1 -0
- package/out/wechaty/puppet/event_pb.js +2 -1
- package/out/wechaty/puppet/room_pb.d.ts +6 -0
- package/out/wechaty/puppet/room_pb.js +58 -2
- package/out/wechaty/puppet/tag_pb.d.ts +181 -73
- package/out/wechaty/puppet/tag_pb.js +1472 -594
- package/out/wechaty/puppet.openapi.yaml +216 -112
- package/out/wechaty/puppet.swagger.json +312 -144
- 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
|
@@ -341,7 +341,8 @@ 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
|
|
345
346
|
};
|
|
346
347
|
|
|
347
348
|
goog.object.extend(exports, proto.wechaty.puppet);
|
|
@@ -251,6 +251,11 @@ export class RoomDelRequest extends jspb.Message {
|
|
|
251
251
|
getContactId(): string;
|
|
252
252
|
setContactId(value: string): void;
|
|
253
253
|
|
|
254
|
+
clearContactIdsList(): void;
|
|
255
|
+
getContactIdsList(): Array<string>;
|
|
256
|
+
setContactIdsList(value: Array<string>): void;
|
|
257
|
+
addContactIds(value: string, index?: number): string;
|
|
258
|
+
|
|
254
259
|
serializeBinary(): Uint8Array;
|
|
255
260
|
toObject(includeInstance?: boolean): RoomDelRequest.AsObject;
|
|
256
261
|
static toObject(includeInstance: boolean, msg: RoomDelRequest): RoomDelRequest.AsObject;
|
|
@@ -265,6 +270,7 @@ export namespace RoomDelRequest {
|
|
|
265
270
|
export type AsObject = {
|
|
266
271
|
id: string,
|
|
267
272
|
contactId: string,
|
|
273
|
+
contactIdsList: Array<string>,
|
|
268
274
|
}
|
|
269
275
|
}
|
|
270
276
|
|
|
@@ -258,7 +258,7 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
258
258
|
* @constructor
|
|
259
259
|
*/
|
|
260
260
|
proto.wechaty.puppet.RoomDelRequest = function(opt_data) {
|
|
261
|
-
jspb.Message.initialize(this, opt_data, 0, -1,
|
|
261
|
+
jspb.Message.initialize(this, opt_data, 0, -1, proto.wechaty.puppet.RoomDelRequest.repeatedFields_, null);
|
|
262
262
|
};
|
|
263
263
|
goog.inherits(proto.wechaty.puppet.RoomDelRequest, jspb.Message);
|
|
264
264
|
if (goog.DEBUG && !COMPILED) {
|
|
@@ -2097,6 +2097,13 @@ proto.wechaty.puppet.RoomCreateResponse.prototype.setId = function(value) {
|
|
|
2097
2097
|
|
|
2098
2098
|
|
|
2099
2099
|
|
|
2100
|
+
/**
|
|
2101
|
+
* List of repeated fields within this message type.
|
|
2102
|
+
* @private {!Array<number>}
|
|
2103
|
+
* @const
|
|
2104
|
+
*/
|
|
2105
|
+
proto.wechaty.puppet.RoomDelRequest.repeatedFields_ = [3];
|
|
2106
|
+
|
|
2100
2107
|
|
|
2101
2108
|
|
|
2102
2109
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
@@ -2129,7 +2136,8 @@ proto.wechaty.puppet.RoomDelRequest.prototype.toObject = function(opt_includeIns
|
|
|
2129
2136
|
proto.wechaty.puppet.RoomDelRequest.toObject = function(includeInstance, msg) {
|
|
2130
2137
|
var f, obj = {
|
|
2131
2138
|
id: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
2132
|
-
contactId: jspb.Message.getFieldWithDefault(msg, 2, "")
|
|
2139
|
+
contactId: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
2140
|
+
contactIdsList: (f = jspb.Message.getRepeatedField(msg, 3)) == null ? undefined : f
|
|
2133
2141
|
};
|
|
2134
2142
|
|
|
2135
2143
|
if (includeInstance) {
|
|
@@ -2174,6 +2182,10 @@ proto.wechaty.puppet.RoomDelRequest.deserializeBinaryFromReader = function(msg,
|
|
|
2174
2182
|
var value = /** @type {string} */ (reader.readString());
|
|
2175
2183
|
msg.setContactId(value);
|
|
2176
2184
|
break;
|
|
2185
|
+
case 3:
|
|
2186
|
+
var value = /** @type {string} */ (reader.readString());
|
|
2187
|
+
msg.addContactIds(value);
|
|
2188
|
+
break;
|
|
2177
2189
|
default:
|
|
2178
2190
|
reader.skipField();
|
|
2179
2191
|
break;
|
|
@@ -2217,6 +2229,13 @@ proto.wechaty.puppet.RoomDelRequest.serializeBinaryToWriter = function(message,
|
|
|
2217
2229
|
f
|
|
2218
2230
|
);
|
|
2219
2231
|
}
|
|
2232
|
+
f = message.getContactIdsList();
|
|
2233
|
+
if (f.length > 0) {
|
|
2234
|
+
writer.writeRepeatedString(
|
|
2235
|
+
3,
|
|
2236
|
+
f
|
|
2237
|
+
);
|
|
2238
|
+
}
|
|
2220
2239
|
};
|
|
2221
2240
|
|
|
2222
2241
|
|
|
@@ -2256,6 +2275,43 @@ proto.wechaty.puppet.RoomDelRequest.prototype.setContactId = function(value) {
|
|
|
2256
2275
|
};
|
|
2257
2276
|
|
|
2258
2277
|
|
|
2278
|
+
/**
|
|
2279
|
+
* repeated string contact_ids = 3;
|
|
2280
|
+
* @return {!Array<string>}
|
|
2281
|
+
*/
|
|
2282
|
+
proto.wechaty.puppet.RoomDelRequest.prototype.getContactIdsList = function() {
|
|
2283
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 3));
|
|
2284
|
+
};
|
|
2285
|
+
|
|
2286
|
+
|
|
2287
|
+
/**
|
|
2288
|
+
* @param {!Array<string>} value
|
|
2289
|
+
* @return {!proto.wechaty.puppet.RoomDelRequest} returns this
|
|
2290
|
+
*/
|
|
2291
|
+
proto.wechaty.puppet.RoomDelRequest.prototype.setContactIdsList = function(value) {
|
|
2292
|
+
return jspb.Message.setField(this, 3, value || []);
|
|
2293
|
+
};
|
|
2294
|
+
|
|
2295
|
+
|
|
2296
|
+
/**
|
|
2297
|
+
* @param {string} value
|
|
2298
|
+
* @param {number=} opt_index
|
|
2299
|
+
* @return {!proto.wechaty.puppet.RoomDelRequest} returns this
|
|
2300
|
+
*/
|
|
2301
|
+
proto.wechaty.puppet.RoomDelRequest.prototype.addContactIds = function(value, opt_index) {
|
|
2302
|
+
return jspb.Message.addToRepeatedField(this, 3, value, opt_index);
|
|
2303
|
+
};
|
|
2304
|
+
|
|
2305
|
+
|
|
2306
|
+
/**
|
|
2307
|
+
* Clears the list making it empty but non-null.
|
|
2308
|
+
* @return {!proto.wechaty.puppet.RoomDelRequest} returns this
|
|
2309
|
+
*/
|
|
2310
|
+
proto.wechaty.puppet.RoomDelRequest.prototype.clearContactIdsList = function() {
|
|
2311
|
+
return this.setContactIdsList([]);
|
|
2312
|
+
};
|
|
2313
|
+
|
|
2314
|
+
|
|
2259
2315
|
|
|
2260
2316
|
|
|
2261
2317
|
|
|
@@ -35,6 +35,30 @@ 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
|
+
|
|
38
62
|
export class TagGroupPayload extends jspb.Message {
|
|
39
63
|
getId(): string;
|
|
40
64
|
setId(value: string): void;
|
|
@@ -42,6 +66,9 @@ export class TagGroupPayload extends jspb.Message {
|
|
|
42
66
|
getName(): string;
|
|
43
67
|
setName(value: string): void;
|
|
44
68
|
|
|
69
|
+
getType(): TagTypeMap[keyof TagTypeMap];
|
|
70
|
+
setType(value: TagTypeMap[keyof TagTypeMap]): void;
|
|
71
|
+
|
|
45
72
|
serializeBinary(): Uint8Array;
|
|
46
73
|
toObject(includeInstance?: boolean): TagGroupPayload.AsObject;
|
|
47
74
|
static toObject(includeInstance: boolean, msg: TagGroupPayload): TagGroupPayload.AsObject;
|
|
@@ -56,18 +83,20 @@ export namespace TagGroupPayload {
|
|
|
56
83
|
export type AsObject = {
|
|
57
84
|
id: string,
|
|
58
85
|
name: string,
|
|
86
|
+
type: TagTypeMap[keyof TagTypeMap],
|
|
59
87
|
}
|
|
60
88
|
}
|
|
61
89
|
|
|
62
90
|
export class TagContactTagAddRequest extends jspb.Message {
|
|
63
|
-
|
|
64
|
-
|
|
91
|
+
clearTagsList(): void;
|
|
92
|
+
getTagsList(): Array<TagIdentifier>;
|
|
93
|
+
setTagsList(value: Array<TagIdentifier>): void;
|
|
94
|
+
addTags(value?: TagIdentifier, index?: number): TagIdentifier;
|
|
65
95
|
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
setContactId(value: string): void;
|
|
96
|
+
clearContactIdsList(): void;
|
|
97
|
+
getContactIdsList(): Array<string>;
|
|
98
|
+
setContactIdsList(value: Array<string>): void;
|
|
99
|
+
addContactIds(value: string, index?: number): string;
|
|
71
100
|
|
|
72
101
|
serializeBinary(): Uint8Array;
|
|
73
102
|
toObject(includeInstance?: boolean): TagContactTagAddRequest.AsObject;
|
|
@@ -81,9 +110,8 @@ export class TagContactTagAddRequest extends jspb.Message {
|
|
|
81
110
|
|
|
82
111
|
export namespace TagContactTagAddRequest {
|
|
83
112
|
export type AsObject = {
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
contactId: string,
|
|
113
|
+
tagsList: Array<TagIdentifier.AsObject>,
|
|
114
|
+
contactIdsList: Array<string>,
|
|
87
115
|
}
|
|
88
116
|
}
|
|
89
117
|
|
|
@@ -104,14 +132,15 @@ export namespace TagContactTagAddResponse {
|
|
|
104
132
|
}
|
|
105
133
|
|
|
106
134
|
export class TagContactTagRemoveRequest extends jspb.Message {
|
|
107
|
-
|
|
108
|
-
|
|
135
|
+
clearTagsList(): void;
|
|
136
|
+
getTagsList(): Array<TagIdentifier>;
|
|
137
|
+
setTagsList(value: Array<TagIdentifier>): void;
|
|
138
|
+
addTags(value?: TagIdentifier, index?: number): TagIdentifier;
|
|
109
139
|
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
setContactId(value: string): void;
|
|
140
|
+
clearContactIdsList(): void;
|
|
141
|
+
getContactIdsList(): Array<string>;
|
|
142
|
+
setContactIdsList(value: Array<string>): void;
|
|
143
|
+
addContactIds(value: string, index?: number): string;
|
|
115
144
|
|
|
116
145
|
serializeBinary(): Uint8Array;
|
|
117
146
|
toObject(includeInstance?: boolean): TagContactTagRemoveRequest.AsObject;
|
|
@@ -125,9 +154,8 @@ export class TagContactTagRemoveRequest extends jspb.Message {
|
|
|
125
154
|
|
|
126
155
|
export namespace TagContactTagRemoveRequest {
|
|
127
156
|
export type AsObject = {
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
contactId: string,
|
|
157
|
+
tagsList: Array<TagIdentifier.AsObject>,
|
|
158
|
+
contactIdsList: Array<string>,
|
|
131
159
|
}
|
|
132
160
|
}
|
|
133
161
|
|
|
@@ -168,10 +196,8 @@ export namespace TagGroupAddRequest {
|
|
|
168
196
|
}
|
|
169
197
|
|
|
170
198
|
export class TagGroupAddResponse extends jspb.Message {
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
getPayload(): TagGroupPayload | undefined;
|
|
174
|
-
setPayload(value?: TagGroupPayload): void;
|
|
199
|
+
getTagGroupId(): string;
|
|
200
|
+
setTagGroupId(value: string): void;
|
|
175
201
|
|
|
176
202
|
serializeBinary(): Uint8Array;
|
|
177
203
|
toObject(includeInstance?: boolean): TagGroupAddResponse.AsObject;
|
|
@@ -185,7 +211,7 @@ export class TagGroupAddResponse extends jspb.Message {
|
|
|
185
211
|
|
|
186
212
|
export namespace TagGroupAddResponse {
|
|
187
213
|
export type AsObject = {
|
|
188
|
-
|
|
214
|
+
tagGroupId: string,
|
|
189
215
|
}
|
|
190
216
|
}
|
|
191
217
|
|
|
@@ -226,12 +252,12 @@ export namespace TagGroupDeleteResponse {
|
|
|
226
252
|
}
|
|
227
253
|
|
|
228
254
|
export class TagTagAddRequest extends jspb.Message {
|
|
229
|
-
getTagGroupId(): string;
|
|
230
|
-
setTagGroupId(value: string): void;
|
|
231
|
-
|
|
232
255
|
getTagName(): string;
|
|
233
256
|
setTagName(value: string): void;
|
|
234
257
|
|
|
258
|
+
getTagGroupId(): string;
|
|
259
|
+
setTagGroupId(value: string): void;
|
|
260
|
+
|
|
235
261
|
serializeBinary(): Uint8Array;
|
|
236
262
|
toObject(includeInstance?: boolean): TagTagAddRequest.AsObject;
|
|
237
263
|
static toObject(includeInstance: boolean, msg: TagTagAddRequest): TagTagAddRequest.AsObject;
|
|
@@ -244,16 +270,16 @@ export class TagTagAddRequest extends jspb.Message {
|
|
|
244
270
|
|
|
245
271
|
export namespace TagTagAddRequest {
|
|
246
272
|
export type AsObject = {
|
|
247
|
-
tagGroupId: string,
|
|
248
273
|
tagName: string,
|
|
274
|
+
tagGroupId: string,
|
|
249
275
|
}
|
|
250
276
|
}
|
|
251
277
|
|
|
252
278
|
export class TagTagAddResponse extends jspb.Message {
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
279
|
+
hasTag(): boolean;
|
|
280
|
+
clearTag(): void;
|
|
281
|
+
getTag(): TagIdentifier | undefined;
|
|
282
|
+
setTag(value?: TagIdentifier): void;
|
|
257
283
|
|
|
258
284
|
serializeBinary(): Uint8Array;
|
|
259
285
|
toObject(includeInstance?: boolean): TagTagAddResponse.AsObject;
|
|
@@ -267,16 +293,15 @@ export class TagTagAddResponse extends jspb.Message {
|
|
|
267
293
|
|
|
268
294
|
export namespace TagTagAddResponse {
|
|
269
295
|
export type AsObject = {
|
|
270
|
-
|
|
296
|
+
tag?: TagIdentifier.AsObject,
|
|
271
297
|
}
|
|
272
298
|
}
|
|
273
299
|
|
|
274
300
|
export class TagTagDeleteRequest extends jspb.Message {
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
setTagId(value: string): void;
|
|
301
|
+
hasTag(): boolean;
|
|
302
|
+
clearTag(): void;
|
|
303
|
+
getTag(): TagIdentifier | undefined;
|
|
304
|
+
setTag(value?: TagIdentifier): void;
|
|
280
305
|
|
|
281
306
|
serializeBinary(): Uint8Array;
|
|
282
307
|
toObject(includeInstance?: boolean): TagTagDeleteRequest.AsObject;
|
|
@@ -290,8 +315,7 @@ export class TagTagDeleteRequest extends jspb.Message {
|
|
|
290
315
|
|
|
291
316
|
export namespace TagTagDeleteRequest {
|
|
292
317
|
export type AsObject = {
|
|
293
|
-
|
|
294
|
-
tagId: string,
|
|
318
|
+
tag?: TagIdentifier.AsObject,
|
|
295
319
|
}
|
|
296
320
|
}
|
|
297
321
|
|
|
@@ -328,10 +352,10 @@ export namespace TagGroupListRequest {
|
|
|
328
352
|
}
|
|
329
353
|
|
|
330
354
|
export class TagGroupListResponse extends jspb.Message {
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
355
|
+
clearTagGroupIdsList(): void;
|
|
356
|
+
getTagGroupIdsList(): Array<string>;
|
|
357
|
+
setTagGroupIdsList(value: Array<string>): void;
|
|
358
|
+
addTagGroupIds(value: string, index?: number): string;
|
|
335
359
|
|
|
336
360
|
serializeBinary(): Uint8Array;
|
|
337
361
|
toObject(includeInstance?: boolean): TagGroupListResponse.AsObject;
|
|
@@ -345,7 +369,7 @@ export class TagGroupListResponse extends jspb.Message {
|
|
|
345
369
|
|
|
346
370
|
export namespace TagGroupListResponse {
|
|
347
371
|
export type AsObject = {
|
|
348
|
-
|
|
372
|
+
tagGroupIdsList: Array<string>,
|
|
349
373
|
}
|
|
350
374
|
}
|
|
351
375
|
|
|
@@ -370,10 +394,10 @@ export namespace TagGroupTagListRequest {
|
|
|
370
394
|
}
|
|
371
395
|
|
|
372
396
|
export class TagGroupTagListResponse extends jspb.Message {
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
397
|
+
clearTagsList(): void;
|
|
398
|
+
getTagsList(): Array<TagIdentifier>;
|
|
399
|
+
setTagsList(value: Array<TagIdentifier>): void;
|
|
400
|
+
addTags(value?: TagIdentifier, index?: number): TagIdentifier;
|
|
377
401
|
|
|
378
402
|
serializeBinary(): Uint8Array;
|
|
379
403
|
toObject(includeInstance?: boolean): TagGroupTagListResponse.AsObject;
|
|
@@ -387,7 +411,7 @@ export class TagGroupTagListResponse extends jspb.Message {
|
|
|
387
411
|
|
|
388
412
|
export namespace TagGroupTagListResponse {
|
|
389
413
|
export type AsObject = {
|
|
390
|
-
|
|
414
|
+
tagsList: Array<TagIdentifier.AsObject>,
|
|
391
415
|
}
|
|
392
416
|
}
|
|
393
417
|
|
|
@@ -408,10 +432,10 @@ export namespace TagTagListRequest {
|
|
|
408
432
|
}
|
|
409
433
|
|
|
410
434
|
export class TagTagListResponse extends jspb.Message {
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
435
|
+
clearTagsList(): void;
|
|
436
|
+
getTagsList(): Array<TagIdentifier>;
|
|
437
|
+
setTagsList(value: Array<TagIdentifier>): void;
|
|
438
|
+
addTags(value?: TagIdentifier, index?: number): TagIdentifier;
|
|
415
439
|
|
|
416
440
|
serializeBinary(): Uint8Array;
|
|
417
441
|
toObject(includeInstance?: boolean): TagTagListResponse.AsObject;
|
|
@@ -425,7 +449,7 @@ export class TagTagListResponse extends jspb.Message {
|
|
|
425
449
|
|
|
426
450
|
export namespace TagTagListResponse {
|
|
427
451
|
export type AsObject = {
|
|
428
|
-
|
|
452
|
+
tagsList: Array<TagIdentifier.AsObject>,
|
|
429
453
|
}
|
|
430
454
|
}
|
|
431
455
|
|
|
@@ -450,10 +474,10 @@ export namespace TagContactTagListRequest {
|
|
|
450
474
|
}
|
|
451
475
|
|
|
452
476
|
export class TagContactTagListResponse extends jspb.Message {
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
477
|
+
clearTagsList(): void;
|
|
478
|
+
getTagsList(): Array<TagIdentifier>;
|
|
479
|
+
setTagsList(value: Array<TagIdentifier>): void;
|
|
480
|
+
addTags(value?: TagIdentifier, index?: number): TagIdentifier;
|
|
457
481
|
|
|
458
482
|
serializeBinary(): Uint8Array;
|
|
459
483
|
toObject(includeInstance?: boolean): TagContactTagListResponse.AsObject;
|
|
@@ -467,16 +491,15 @@ export class TagContactTagListResponse extends jspb.Message {
|
|
|
467
491
|
|
|
468
492
|
export namespace TagContactTagListResponse {
|
|
469
493
|
export type AsObject = {
|
|
470
|
-
|
|
494
|
+
tagsList: Array<TagIdentifier.AsObject>,
|
|
471
495
|
}
|
|
472
496
|
}
|
|
473
497
|
|
|
474
498
|
export class TagTagContactListRequest extends jspb.Message {
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
setTagId(value: string): void;
|
|
499
|
+
hasTag(): boolean;
|
|
500
|
+
clearTag(): void;
|
|
501
|
+
getTag(): TagIdentifier | undefined;
|
|
502
|
+
setTag(value?: TagIdentifier): void;
|
|
480
503
|
|
|
481
504
|
serializeBinary(): Uint8Array;
|
|
482
505
|
toObject(includeInstance?: boolean): TagTagContactListRequest.AsObject;
|
|
@@ -490,16 +513,15 @@ export class TagTagContactListRequest extends jspb.Message {
|
|
|
490
513
|
|
|
491
514
|
export namespace TagTagContactListRequest {
|
|
492
515
|
export type AsObject = {
|
|
493
|
-
|
|
494
|
-
tagId: string,
|
|
516
|
+
tag?: TagIdentifier.AsObject,
|
|
495
517
|
}
|
|
496
518
|
}
|
|
497
519
|
|
|
498
520
|
export class TagTagContactListResponse extends jspb.Message {
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
521
|
+
clearContactIdsList(): void;
|
|
522
|
+
getContactIdsList(): Array<string>;
|
|
523
|
+
setContactIdsList(value: Array<string>): void;
|
|
524
|
+
addContactIds(value: string, index?: number): string;
|
|
503
525
|
|
|
504
526
|
serializeBinary(): Uint8Array;
|
|
505
527
|
toObject(includeInstance?: boolean): TagTagContactListResponse.AsObject;
|
|
@@ -513,7 +535,93 @@ export class TagTagContactListResponse extends jspb.Message {
|
|
|
513
535
|
|
|
514
536
|
export namespace TagTagContactListResponse {
|
|
515
537
|
export type AsObject = {
|
|
516
|
-
|
|
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,
|
|
517
625
|
}
|
|
518
626
|
}
|
|
519
627
|
|