@juzi/wechaty-grpc 1.0.7 → 1.0.8
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/corp-tag_grpc_pb.js +1 -0
- package/dist/cjs/out/wechaty/puppet/corp-tag_pb.d.ts +431 -0
- package/dist/cjs/out/wechaty/puppet/corp-tag_pb.js +3315 -0
- package/dist/cjs/out/wechaty/puppet/corp-tag_pb_service.d.ts +3 -0
- package/dist/cjs/out/wechaty/puppet/corp-tag_pb_service.js +3 -0
- package/dist/cjs/out/wechaty/puppet.openapi.yaml +257 -1
- package/dist/cjs/out/wechaty/puppet.swagger.json +384 -1
- package/dist/cjs/out/wechaty/puppet_grpc_pb.d.ts +154 -0
- package/dist/cjs/out/wechaty/puppet_grpc_pb.js +303 -0
- package/dist/cjs/out/wechaty/puppet_pb.d.ts +1 -0
- package/dist/cjs/out/wechaty/puppet_pb.js +2 -0
- package/dist/cjs/out/wechaty/puppet_pb_service.d.ts +172 -0
- package/dist/cjs/out/wechaty/puppet_pb_service.js +361 -0
- package/dist/cjs/proto/wechaty/puppet/corp-tag.proto +90 -0
- package/dist/cjs/proto/wechaty/puppet.proto +60 -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 +45 -0
- package/dist/cjs/tests/puppet-server-impl.js.map +1 -1
- package/dist/esm/out/wechaty/puppet/corp-tag_grpc_pb.js +1 -0
- package/dist/esm/out/wechaty/puppet/corp-tag_pb.d.ts +431 -0
- package/dist/esm/out/wechaty/puppet/corp-tag_pb.js +3315 -0
- package/dist/esm/out/wechaty/puppet/corp-tag_pb_service.d.ts +3 -0
- package/dist/esm/out/wechaty/puppet/corp-tag_pb_service.js +3 -0
- package/dist/esm/out/wechaty/puppet.openapi.yaml +257 -1
- package/dist/esm/out/wechaty/puppet.swagger.json +384 -1
- package/dist/esm/out/wechaty/puppet_grpc_pb.d.ts +154 -0
- package/dist/esm/out/wechaty/puppet_grpc_pb.js +303 -0
- package/dist/esm/out/wechaty/puppet_pb.d.ts +1 -0
- package/dist/esm/out/wechaty/puppet_pb.js +2 -0
- package/dist/esm/out/wechaty/puppet_pb_service.d.ts +172 -0
- package/dist/esm/out/wechaty/puppet_pb_service.js +361 -0
- package/dist/esm/proto/wechaty/puppet/corp-tag.proto +90 -0
- package/dist/esm/proto/wechaty/puppet.proto +60 -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 +45 -0
- package/dist/esm/tests/puppet-server-impl.js.map +1 -1
- package/out/wechaty/puppet/corp-tag_grpc_pb.js +1 -0
- package/out/wechaty/puppet/corp-tag_pb.d.ts +431 -0
- package/out/wechaty/puppet/corp-tag_pb.js +3315 -0
- package/out/wechaty/puppet/corp-tag_pb_service.d.ts +3 -0
- package/out/wechaty/puppet/corp-tag_pb_service.js +3 -0
- package/out/wechaty/puppet.openapi.yaml +257 -1
- package/out/wechaty/puppet.swagger.json +384 -1
- package/out/wechaty/puppet_grpc_pb.d.ts +154 -0
- package/out/wechaty/puppet_grpc_pb.js +303 -0
- package/out/wechaty/puppet_pb.d.ts +1 -0
- package/out/wechaty/puppet_pb.js +2 -0
- package/out/wechaty/puppet_pb_service.d.ts +172 -0
- package/out/wechaty/puppet_pb_service.js +361 -0
- package/package.json +1 -1
- package/src/package-json.ts +1 -1
|
@@ -0,0 +1,431 @@
|
|
|
1
|
+
// package: wechaty.puppet
|
|
2
|
+
// file: wechaty/puppet/corp-tag.proto
|
|
3
|
+
|
|
4
|
+
import * as jspb from "google-protobuf";
|
|
5
|
+
|
|
6
|
+
export class CorpTagPayload extends jspb.Message {
|
|
7
|
+
getId(): string;
|
|
8
|
+
setId(value: string): void;
|
|
9
|
+
|
|
10
|
+
getName(): string;
|
|
11
|
+
setName(value: string): void;
|
|
12
|
+
|
|
13
|
+
getGroupId(): string;
|
|
14
|
+
setGroupId(value: string): void;
|
|
15
|
+
|
|
16
|
+
serializeBinary(): Uint8Array;
|
|
17
|
+
toObject(includeInstance?: boolean): CorpTagPayload.AsObject;
|
|
18
|
+
static toObject(includeInstance: boolean, msg: CorpTagPayload): CorpTagPayload.AsObject;
|
|
19
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
20
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
21
|
+
static serializeBinaryToWriter(message: CorpTagPayload, writer: jspb.BinaryWriter): void;
|
|
22
|
+
static deserializeBinary(bytes: Uint8Array): CorpTagPayload;
|
|
23
|
+
static deserializeBinaryFromReader(message: CorpTagPayload, reader: jspb.BinaryReader): CorpTagPayload;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export namespace CorpTagPayload {
|
|
27
|
+
export type AsObject = {
|
|
28
|
+
id: string,
|
|
29
|
+
name: string,
|
|
30
|
+
groupId: string,
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export class CorpTagGroupPayload extends jspb.Message {
|
|
35
|
+
getId(): string;
|
|
36
|
+
setId(value: string): void;
|
|
37
|
+
|
|
38
|
+
getName(): string;
|
|
39
|
+
setName(value: string): void;
|
|
40
|
+
|
|
41
|
+
serializeBinary(): Uint8Array;
|
|
42
|
+
toObject(includeInstance?: boolean): CorpTagGroupPayload.AsObject;
|
|
43
|
+
static toObject(includeInstance: boolean, msg: CorpTagGroupPayload): CorpTagGroupPayload.AsObject;
|
|
44
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
45
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
46
|
+
static serializeBinaryToWriter(message: CorpTagGroupPayload, writer: jspb.BinaryWriter): void;
|
|
47
|
+
static deserializeBinary(bytes: Uint8Array): CorpTagGroupPayload;
|
|
48
|
+
static deserializeBinaryFromReader(message: CorpTagGroupPayload, reader: jspb.BinaryReader): CorpTagGroupPayload;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
export namespace CorpTagGroupPayload {
|
|
52
|
+
export type AsObject = {
|
|
53
|
+
id: string,
|
|
54
|
+
name: string,
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export class CorpTagContactTagAddRequest extends jspb.Message {
|
|
59
|
+
getCorpTagGroupId(): string;
|
|
60
|
+
setCorpTagGroupId(value: string): void;
|
|
61
|
+
|
|
62
|
+
getCorpTagId(): string;
|
|
63
|
+
setCorpTagId(value: string): void;
|
|
64
|
+
|
|
65
|
+
getContactId(): string;
|
|
66
|
+
setContactId(value: string): void;
|
|
67
|
+
|
|
68
|
+
serializeBinary(): Uint8Array;
|
|
69
|
+
toObject(includeInstance?: boolean): CorpTagContactTagAddRequest.AsObject;
|
|
70
|
+
static toObject(includeInstance: boolean, msg: CorpTagContactTagAddRequest): CorpTagContactTagAddRequest.AsObject;
|
|
71
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
72
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
73
|
+
static serializeBinaryToWriter(message: CorpTagContactTagAddRequest, writer: jspb.BinaryWriter): void;
|
|
74
|
+
static deserializeBinary(bytes: Uint8Array): CorpTagContactTagAddRequest;
|
|
75
|
+
static deserializeBinaryFromReader(message: CorpTagContactTagAddRequest, reader: jspb.BinaryReader): CorpTagContactTagAddRequest;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
export namespace CorpTagContactTagAddRequest {
|
|
79
|
+
export type AsObject = {
|
|
80
|
+
corpTagGroupId: string,
|
|
81
|
+
corpTagId: string,
|
|
82
|
+
contactId: string,
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
export class CorpTagContactTagAddResponse extends jspb.Message {
|
|
87
|
+
serializeBinary(): Uint8Array;
|
|
88
|
+
toObject(includeInstance?: boolean): CorpTagContactTagAddResponse.AsObject;
|
|
89
|
+
static toObject(includeInstance: boolean, msg: CorpTagContactTagAddResponse): CorpTagContactTagAddResponse.AsObject;
|
|
90
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
91
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
92
|
+
static serializeBinaryToWriter(message: CorpTagContactTagAddResponse, writer: jspb.BinaryWriter): void;
|
|
93
|
+
static deserializeBinary(bytes: Uint8Array): CorpTagContactTagAddResponse;
|
|
94
|
+
static deserializeBinaryFromReader(message: CorpTagContactTagAddResponse, reader: jspb.BinaryReader): CorpTagContactTagAddResponse;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
export namespace CorpTagContactTagAddResponse {
|
|
98
|
+
export type AsObject = {
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
export class CorpTagContactTagRemoveRequest extends jspb.Message {
|
|
103
|
+
getCorpTagGroupId(): string;
|
|
104
|
+
setCorpTagGroupId(value: string): void;
|
|
105
|
+
|
|
106
|
+
getCorpTagId(): string;
|
|
107
|
+
setCorpTagId(value: string): void;
|
|
108
|
+
|
|
109
|
+
getContactId(): string;
|
|
110
|
+
setContactId(value: string): void;
|
|
111
|
+
|
|
112
|
+
serializeBinary(): Uint8Array;
|
|
113
|
+
toObject(includeInstance?: boolean): CorpTagContactTagRemoveRequest.AsObject;
|
|
114
|
+
static toObject(includeInstance: boolean, msg: CorpTagContactTagRemoveRequest): CorpTagContactTagRemoveRequest.AsObject;
|
|
115
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
116
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
117
|
+
static serializeBinaryToWriter(message: CorpTagContactTagRemoveRequest, writer: jspb.BinaryWriter): void;
|
|
118
|
+
static deserializeBinary(bytes: Uint8Array): CorpTagContactTagRemoveRequest;
|
|
119
|
+
static deserializeBinaryFromReader(message: CorpTagContactTagRemoveRequest, reader: jspb.BinaryReader): CorpTagContactTagRemoveRequest;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
export namespace CorpTagContactTagRemoveRequest {
|
|
123
|
+
export type AsObject = {
|
|
124
|
+
corpTagGroupId: string,
|
|
125
|
+
corpTagId: string,
|
|
126
|
+
contactId: string,
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
export class CorpTagContactTagRemoveResponse extends jspb.Message {
|
|
131
|
+
serializeBinary(): Uint8Array;
|
|
132
|
+
toObject(includeInstance?: boolean): CorpTagContactTagRemoveResponse.AsObject;
|
|
133
|
+
static toObject(includeInstance: boolean, msg: CorpTagContactTagRemoveResponse): CorpTagContactTagRemoveResponse.AsObject;
|
|
134
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
135
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
136
|
+
static serializeBinaryToWriter(message: CorpTagContactTagRemoveResponse, writer: jspb.BinaryWriter): void;
|
|
137
|
+
static deserializeBinary(bytes: Uint8Array): CorpTagContactTagRemoveResponse;
|
|
138
|
+
static deserializeBinaryFromReader(message: CorpTagContactTagRemoveResponse, reader: jspb.BinaryReader): CorpTagContactTagRemoveResponse;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
export namespace CorpTagContactTagRemoveResponse {
|
|
142
|
+
export type AsObject = {
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
export class CorpTagGroupAddRequest extends jspb.Message {
|
|
147
|
+
getCorpTagGroupName(): string;
|
|
148
|
+
setCorpTagGroupName(value: string): void;
|
|
149
|
+
|
|
150
|
+
serializeBinary(): Uint8Array;
|
|
151
|
+
toObject(includeInstance?: boolean): CorpTagGroupAddRequest.AsObject;
|
|
152
|
+
static toObject(includeInstance: boolean, msg: CorpTagGroupAddRequest): CorpTagGroupAddRequest.AsObject;
|
|
153
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
154
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
155
|
+
static serializeBinaryToWriter(message: CorpTagGroupAddRequest, writer: jspb.BinaryWriter): void;
|
|
156
|
+
static deserializeBinary(bytes: Uint8Array): CorpTagGroupAddRequest;
|
|
157
|
+
static deserializeBinaryFromReader(message: CorpTagGroupAddRequest, reader: jspb.BinaryReader): CorpTagGroupAddRequest;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
export namespace CorpTagGroupAddRequest {
|
|
161
|
+
export type AsObject = {
|
|
162
|
+
corpTagGroupName: string,
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
export class CorpTagGroupAddResponse extends jspb.Message {
|
|
167
|
+
hasPayload(): boolean;
|
|
168
|
+
clearPayload(): void;
|
|
169
|
+
getPayload(): CorpTagGroupPayload | undefined;
|
|
170
|
+
setPayload(value?: CorpTagGroupPayload): void;
|
|
171
|
+
|
|
172
|
+
serializeBinary(): Uint8Array;
|
|
173
|
+
toObject(includeInstance?: boolean): CorpTagGroupAddResponse.AsObject;
|
|
174
|
+
static toObject(includeInstance: boolean, msg: CorpTagGroupAddResponse): CorpTagGroupAddResponse.AsObject;
|
|
175
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
176
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
177
|
+
static serializeBinaryToWriter(message: CorpTagGroupAddResponse, writer: jspb.BinaryWriter): void;
|
|
178
|
+
static deserializeBinary(bytes: Uint8Array): CorpTagGroupAddResponse;
|
|
179
|
+
static deserializeBinaryFromReader(message: CorpTagGroupAddResponse, reader: jspb.BinaryReader): CorpTagGroupAddResponse;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
export namespace CorpTagGroupAddResponse {
|
|
183
|
+
export type AsObject = {
|
|
184
|
+
payload?: CorpTagGroupPayload.AsObject,
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
export class CorpTagGroupDeleteRequest extends jspb.Message {
|
|
189
|
+
getCorpTagGroupId(): string;
|
|
190
|
+
setCorpTagGroupId(value: string): void;
|
|
191
|
+
|
|
192
|
+
serializeBinary(): Uint8Array;
|
|
193
|
+
toObject(includeInstance?: boolean): CorpTagGroupDeleteRequest.AsObject;
|
|
194
|
+
static toObject(includeInstance: boolean, msg: CorpTagGroupDeleteRequest): CorpTagGroupDeleteRequest.AsObject;
|
|
195
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
196
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
197
|
+
static serializeBinaryToWriter(message: CorpTagGroupDeleteRequest, writer: jspb.BinaryWriter): void;
|
|
198
|
+
static deserializeBinary(bytes: Uint8Array): CorpTagGroupDeleteRequest;
|
|
199
|
+
static deserializeBinaryFromReader(message: CorpTagGroupDeleteRequest, reader: jspb.BinaryReader): CorpTagGroupDeleteRequest;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
export namespace CorpTagGroupDeleteRequest {
|
|
203
|
+
export type AsObject = {
|
|
204
|
+
corpTagGroupId: string,
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
export class CorpTagGroupDeleteResponse extends jspb.Message {
|
|
209
|
+
serializeBinary(): Uint8Array;
|
|
210
|
+
toObject(includeInstance?: boolean): CorpTagGroupDeleteResponse.AsObject;
|
|
211
|
+
static toObject(includeInstance: boolean, msg: CorpTagGroupDeleteResponse): CorpTagGroupDeleteResponse.AsObject;
|
|
212
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
213
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
214
|
+
static serializeBinaryToWriter(message: CorpTagGroupDeleteResponse, writer: jspb.BinaryWriter): void;
|
|
215
|
+
static deserializeBinary(bytes: Uint8Array): CorpTagGroupDeleteResponse;
|
|
216
|
+
static deserializeBinaryFromReader(message: CorpTagGroupDeleteResponse, reader: jspb.BinaryReader): CorpTagGroupDeleteResponse;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
export namespace CorpTagGroupDeleteResponse {
|
|
220
|
+
export type AsObject = {
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
export class CorpTagTagAddRequest extends jspb.Message {
|
|
225
|
+
getCorpTagGroupId(): string;
|
|
226
|
+
setCorpTagGroupId(value: string): void;
|
|
227
|
+
|
|
228
|
+
getCorpTagName(): string;
|
|
229
|
+
setCorpTagName(value: string): void;
|
|
230
|
+
|
|
231
|
+
serializeBinary(): Uint8Array;
|
|
232
|
+
toObject(includeInstance?: boolean): CorpTagTagAddRequest.AsObject;
|
|
233
|
+
static toObject(includeInstance: boolean, msg: CorpTagTagAddRequest): CorpTagTagAddRequest.AsObject;
|
|
234
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
235
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
236
|
+
static serializeBinaryToWriter(message: CorpTagTagAddRequest, writer: jspb.BinaryWriter): void;
|
|
237
|
+
static deserializeBinary(bytes: Uint8Array): CorpTagTagAddRequest;
|
|
238
|
+
static deserializeBinaryFromReader(message: CorpTagTagAddRequest, reader: jspb.BinaryReader): CorpTagTagAddRequest;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
export namespace CorpTagTagAddRequest {
|
|
242
|
+
export type AsObject = {
|
|
243
|
+
corpTagGroupId: string,
|
|
244
|
+
corpTagName: string,
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
export class CorpTagTagAddResponse extends jspb.Message {
|
|
249
|
+
hasPayload(): boolean;
|
|
250
|
+
clearPayload(): void;
|
|
251
|
+
getPayload(): CorpTagPayload | undefined;
|
|
252
|
+
setPayload(value?: CorpTagPayload): void;
|
|
253
|
+
|
|
254
|
+
serializeBinary(): Uint8Array;
|
|
255
|
+
toObject(includeInstance?: boolean): CorpTagTagAddResponse.AsObject;
|
|
256
|
+
static toObject(includeInstance: boolean, msg: CorpTagTagAddResponse): CorpTagTagAddResponse.AsObject;
|
|
257
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
258
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
259
|
+
static serializeBinaryToWriter(message: CorpTagTagAddResponse, writer: jspb.BinaryWriter): void;
|
|
260
|
+
static deserializeBinary(bytes: Uint8Array): CorpTagTagAddResponse;
|
|
261
|
+
static deserializeBinaryFromReader(message: CorpTagTagAddResponse, reader: jspb.BinaryReader): CorpTagTagAddResponse;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
export namespace CorpTagTagAddResponse {
|
|
265
|
+
export type AsObject = {
|
|
266
|
+
payload?: CorpTagPayload.AsObject,
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
export class CorpTagTagDeleteRequest extends jspb.Message {
|
|
271
|
+
getCorpTagGroupId(): string;
|
|
272
|
+
setCorpTagGroupId(value: string): void;
|
|
273
|
+
|
|
274
|
+
getCorpTagId(): string;
|
|
275
|
+
setCorpTagId(value: string): void;
|
|
276
|
+
|
|
277
|
+
serializeBinary(): Uint8Array;
|
|
278
|
+
toObject(includeInstance?: boolean): CorpTagTagDeleteRequest.AsObject;
|
|
279
|
+
static toObject(includeInstance: boolean, msg: CorpTagTagDeleteRequest): CorpTagTagDeleteRequest.AsObject;
|
|
280
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
281
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
282
|
+
static serializeBinaryToWriter(message: CorpTagTagDeleteRequest, writer: jspb.BinaryWriter): void;
|
|
283
|
+
static deserializeBinary(bytes: Uint8Array): CorpTagTagDeleteRequest;
|
|
284
|
+
static deserializeBinaryFromReader(message: CorpTagTagDeleteRequest, reader: jspb.BinaryReader): CorpTagTagDeleteRequest;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
export namespace CorpTagTagDeleteRequest {
|
|
288
|
+
export type AsObject = {
|
|
289
|
+
corpTagGroupId: string,
|
|
290
|
+
corpTagId: string,
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
export class CorpTagTagDeleteResponse extends jspb.Message {
|
|
295
|
+
serializeBinary(): Uint8Array;
|
|
296
|
+
toObject(includeInstance?: boolean): CorpTagTagDeleteResponse.AsObject;
|
|
297
|
+
static toObject(includeInstance: boolean, msg: CorpTagTagDeleteResponse): CorpTagTagDeleteResponse.AsObject;
|
|
298
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
299
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
300
|
+
static serializeBinaryToWriter(message: CorpTagTagDeleteResponse, writer: jspb.BinaryWriter): void;
|
|
301
|
+
static deserializeBinary(bytes: Uint8Array): CorpTagTagDeleteResponse;
|
|
302
|
+
static deserializeBinaryFromReader(message: CorpTagTagDeleteResponse, reader: jspb.BinaryReader): CorpTagTagDeleteResponse;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
export namespace CorpTagTagDeleteResponse {
|
|
306
|
+
export type AsObject = {
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
export class CorpTagGroupListRequest extends jspb.Message {
|
|
311
|
+
serializeBinary(): Uint8Array;
|
|
312
|
+
toObject(includeInstance?: boolean): CorpTagGroupListRequest.AsObject;
|
|
313
|
+
static toObject(includeInstance: boolean, msg: CorpTagGroupListRequest): CorpTagGroupListRequest.AsObject;
|
|
314
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
315
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
316
|
+
static serializeBinaryToWriter(message: CorpTagGroupListRequest, writer: jspb.BinaryWriter): void;
|
|
317
|
+
static deserializeBinary(bytes: Uint8Array): CorpTagGroupListRequest;
|
|
318
|
+
static deserializeBinaryFromReader(message: CorpTagGroupListRequest, reader: jspb.BinaryReader): CorpTagGroupListRequest;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
export namespace CorpTagGroupListRequest {
|
|
322
|
+
export type AsObject = {
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
export class CorpTagGroupListResponse extends jspb.Message {
|
|
327
|
+
clearPayloadsList(): void;
|
|
328
|
+
getPayloadsList(): Array<CorpTagGroupPayload>;
|
|
329
|
+
setPayloadsList(value: Array<CorpTagGroupPayload>): void;
|
|
330
|
+
addPayloads(value?: CorpTagGroupPayload, index?: number): CorpTagGroupPayload;
|
|
331
|
+
|
|
332
|
+
serializeBinary(): Uint8Array;
|
|
333
|
+
toObject(includeInstance?: boolean): CorpTagGroupListResponse.AsObject;
|
|
334
|
+
static toObject(includeInstance: boolean, msg: CorpTagGroupListResponse): CorpTagGroupListResponse.AsObject;
|
|
335
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
336
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
337
|
+
static serializeBinaryToWriter(message: CorpTagGroupListResponse, writer: jspb.BinaryWriter): void;
|
|
338
|
+
static deserializeBinary(bytes: Uint8Array): CorpTagGroupListResponse;
|
|
339
|
+
static deserializeBinaryFromReader(message: CorpTagGroupListResponse, reader: jspb.BinaryReader): CorpTagGroupListResponse;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
export namespace CorpTagGroupListResponse {
|
|
343
|
+
export type AsObject = {
|
|
344
|
+
payloadsList: Array<CorpTagGroupPayload.AsObject>,
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
export class CorpTagTagListRequest extends jspb.Message {
|
|
349
|
+
getCorpTagGroupId(): string;
|
|
350
|
+
setCorpTagGroupId(value: string): void;
|
|
351
|
+
|
|
352
|
+
serializeBinary(): Uint8Array;
|
|
353
|
+
toObject(includeInstance?: boolean): CorpTagTagListRequest.AsObject;
|
|
354
|
+
static toObject(includeInstance: boolean, msg: CorpTagTagListRequest): CorpTagTagListRequest.AsObject;
|
|
355
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
356
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
357
|
+
static serializeBinaryToWriter(message: CorpTagTagListRequest, writer: jspb.BinaryWriter): void;
|
|
358
|
+
static deserializeBinary(bytes: Uint8Array): CorpTagTagListRequest;
|
|
359
|
+
static deserializeBinaryFromReader(message: CorpTagTagListRequest, reader: jspb.BinaryReader): CorpTagTagListRequest;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
export namespace CorpTagTagListRequest {
|
|
363
|
+
export type AsObject = {
|
|
364
|
+
corpTagGroupId: string,
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
export class CorpTagTagListResponse extends jspb.Message {
|
|
369
|
+
clearPayloadsList(): void;
|
|
370
|
+
getPayloadsList(): Array<CorpTagPayload>;
|
|
371
|
+
setPayloadsList(value: Array<CorpTagPayload>): void;
|
|
372
|
+
addPayloads(value?: CorpTagPayload, index?: number): CorpTagPayload;
|
|
373
|
+
|
|
374
|
+
serializeBinary(): Uint8Array;
|
|
375
|
+
toObject(includeInstance?: boolean): CorpTagTagListResponse.AsObject;
|
|
376
|
+
static toObject(includeInstance: boolean, msg: CorpTagTagListResponse): CorpTagTagListResponse.AsObject;
|
|
377
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
378
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
379
|
+
static serializeBinaryToWriter(message: CorpTagTagListResponse, writer: jspb.BinaryWriter): void;
|
|
380
|
+
static deserializeBinary(bytes: Uint8Array): CorpTagTagListResponse;
|
|
381
|
+
static deserializeBinaryFromReader(message: CorpTagTagListResponse, reader: jspb.BinaryReader): CorpTagTagListResponse;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
export namespace CorpTagTagListResponse {
|
|
385
|
+
export type AsObject = {
|
|
386
|
+
payloadsList: Array<CorpTagPayload.AsObject>,
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
export class CorpTagContactTagListRequest extends jspb.Message {
|
|
391
|
+
getContactId(): string;
|
|
392
|
+
setContactId(value: string): void;
|
|
393
|
+
|
|
394
|
+
serializeBinary(): Uint8Array;
|
|
395
|
+
toObject(includeInstance?: boolean): CorpTagContactTagListRequest.AsObject;
|
|
396
|
+
static toObject(includeInstance: boolean, msg: CorpTagContactTagListRequest): CorpTagContactTagListRequest.AsObject;
|
|
397
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
398
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
399
|
+
static serializeBinaryToWriter(message: CorpTagContactTagListRequest, writer: jspb.BinaryWriter): void;
|
|
400
|
+
static deserializeBinary(bytes: Uint8Array): CorpTagContactTagListRequest;
|
|
401
|
+
static deserializeBinaryFromReader(message: CorpTagContactTagListRequest, reader: jspb.BinaryReader): CorpTagContactTagListRequest;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
export namespace CorpTagContactTagListRequest {
|
|
405
|
+
export type AsObject = {
|
|
406
|
+
contactId: string,
|
|
407
|
+
}
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
export class CorpTagContactTagListResponse extends jspb.Message {
|
|
411
|
+
clearPayloadsList(): void;
|
|
412
|
+
getPayloadsList(): Array<CorpTagPayload>;
|
|
413
|
+
setPayloadsList(value: Array<CorpTagPayload>): void;
|
|
414
|
+
addPayloads(value?: CorpTagPayload, index?: number): CorpTagPayload;
|
|
415
|
+
|
|
416
|
+
serializeBinary(): Uint8Array;
|
|
417
|
+
toObject(includeInstance?: boolean): CorpTagContactTagListResponse.AsObject;
|
|
418
|
+
static toObject(includeInstance: boolean, msg: CorpTagContactTagListResponse): CorpTagContactTagListResponse.AsObject;
|
|
419
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
420
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
421
|
+
static serializeBinaryToWriter(message: CorpTagContactTagListResponse, writer: jspb.BinaryWriter): void;
|
|
422
|
+
static deserializeBinary(bytes: Uint8Array): CorpTagContactTagListResponse;
|
|
423
|
+
static deserializeBinaryFromReader(message: CorpTagContactTagListResponse, reader: jspb.BinaryReader): CorpTagContactTagListResponse;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
export namespace CorpTagContactTagListResponse {
|
|
427
|
+
export type AsObject = {
|
|
428
|
+
payloadsList: Array<CorpTagPayload.AsObject>,
|
|
429
|
+
}
|
|
430
|
+
}
|
|
431
|
+
|