@juzi/wechaty-grpc 1.0.69 → 1.0.70

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.
Files changed (38) hide show
  1. package/dist/cjs/out/wechaty/puppet/contact_pb.d.ts +80 -0
  2. package/dist/cjs/out/wechaty/puppet/contact_pb.js +611 -1
  3. package/dist/cjs/out/wechaty/puppet.openapi.yaml +47 -1
  4. package/dist/cjs/out/wechaty/puppet.swagger.json +73 -1
  5. package/dist/cjs/out/wechaty/puppet_grpc_pb.d.ts +34 -0
  6. package/dist/cjs/out/wechaty/puppet_grpc_pb.js +66 -0
  7. package/dist/cjs/out/wechaty/puppet_pb_service.d.ts +38 -0
  8. package/dist/cjs/out/wechaty/puppet_pb_service.js +80 -0
  9. package/dist/cjs/proto/wechaty/puppet/contact.proto +17 -0
  10. package/dist/cjs/proto/wechaty/puppet.proto +10 -0
  11. package/dist/cjs/src/package-json.js +1 -1
  12. package/dist/cjs/tests/puppet-server-impl.d.ts.map +1 -1
  13. package/dist/cjs/tests/puppet-server-impl.js +10 -0
  14. package/dist/cjs/tests/puppet-server-impl.js.map +1 -1
  15. package/dist/esm/out/wechaty/puppet/contact_pb.d.ts +80 -0
  16. package/dist/esm/out/wechaty/puppet/contact_pb.js +611 -1
  17. package/dist/esm/out/wechaty/puppet.openapi.yaml +47 -1
  18. package/dist/esm/out/wechaty/puppet.swagger.json +73 -1
  19. package/dist/esm/out/wechaty/puppet_grpc_pb.d.ts +34 -0
  20. package/dist/esm/out/wechaty/puppet_grpc_pb.js +66 -0
  21. package/dist/esm/out/wechaty/puppet_pb_service.d.ts +38 -0
  22. package/dist/esm/out/wechaty/puppet_pb_service.js +80 -0
  23. package/dist/esm/proto/wechaty/puppet/contact.proto +17 -0
  24. package/dist/esm/proto/wechaty/puppet.proto +10 -0
  25. package/dist/esm/src/package-json.js +1 -1
  26. package/dist/esm/tests/puppet-server-impl.d.ts.map +1 -1
  27. package/dist/esm/tests/puppet-server-impl.js +10 -0
  28. package/dist/esm/tests/puppet-server-impl.js.map +1 -1
  29. package/out/wechaty/puppet/contact_pb.d.ts +80 -0
  30. package/out/wechaty/puppet/contact_pb.js +611 -1
  31. package/out/wechaty/puppet.openapi.yaml +47 -1
  32. package/out/wechaty/puppet.swagger.json +73 -1
  33. package/out/wechaty/puppet_grpc_pb.d.ts +34 -0
  34. package/out/wechaty/puppet_grpc_pb.js +66 -0
  35. package/out/wechaty/puppet_pb_service.d.ts +38 -0
  36. package/out/wechaty/puppet_pb_service.js +80 -0
  37. package/package.json +1 -1
  38. package/src/package-json.ts +1 -1
@@ -127,6 +127,12 @@ export class ContactPayloadResponse extends jspb.Message {
127
127
  setTagIdsList(value: Array<string>): void;
128
128
  addTagIds(value: string, index?: number): string;
129
129
 
130
+ getRealName(): string;
131
+ setRealName(value: string): void;
132
+
133
+ getAka(): string;
134
+ setAka(value: string): void;
135
+
130
136
  serializeBinary(): Uint8Array;
131
137
  toObject(includeInstance?: boolean): ContactPayloadResponse.AsObject;
132
138
  static toObject(includeInstance: boolean, msg: ContactPayloadResponse): ContactPayloadResponse.AsObject;
@@ -159,6 +165,8 @@ export namespace ContactPayloadResponse {
159
165
  phonesList: Array<string>,
160
166
  additionalInfo: string,
161
167
  tagIdsList: Array<string>,
168
+ realName: string,
169
+ aka: string,
162
170
  }
163
171
  }
164
172
 
@@ -310,6 +318,78 @@ export namespace ContactSelfRoomAliasResponse {
310
318
  }
311
319
  }
312
320
 
321
+ export class ContactSelfRealNameRequest extends jspb.Message {
322
+ getRealName(): string;
323
+ setRealName(value: string): void;
324
+
325
+ serializeBinary(): Uint8Array;
326
+ toObject(includeInstance?: boolean): ContactSelfRealNameRequest.AsObject;
327
+ static toObject(includeInstance: boolean, msg: ContactSelfRealNameRequest): ContactSelfRealNameRequest.AsObject;
328
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
329
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
330
+ static serializeBinaryToWriter(message: ContactSelfRealNameRequest, writer: jspb.BinaryWriter): void;
331
+ static deserializeBinary(bytes: Uint8Array): ContactSelfRealNameRequest;
332
+ static deserializeBinaryFromReader(message: ContactSelfRealNameRequest, reader: jspb.BinaryReader): ContactSelfRealNameRequest;
333
+ }
334
+
335
+ export namespace ContactSelfRealNameRequest {
336
+ export type AsObject = {
337
+ realName: string,
338
+ }
339
+ }
340
+
341
+ export class ContactSelfRealNameResponse extends jspb.Message {
342
+ serializeBinary(): Uint8Array;
343
+ toObject(includeInstance?: boolean): ContactSelfRealNameResponse.AsObject;
344
+ static toObject(includeInstance: boolean, msg: ContactSelfRealNameResponse): ContactSelfRealNameResponse.AsObject;
345
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
346
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
347
+ static serializeBinaryToWriter(message: ContactSelfRealNameResponse, writer: jspb.BinaryWriter): void;
348
+ static deserializeBinary(bytes: Uint8Array): ContactSelfRealNameResponse;
349
+ static deserializeBinaryFromReader(message: ContactSelfRealNameResponse, reader: jspb.BinaryReader): ContactSelfRealNameResponse;
350
+ }
351
+
352
+ export namespace ContactSelfRealNameResponse {
353
+ export type AsObject = {
354
+ }
355
+ }
356
+
357
+ export class ContactSelfAkaRequest extends jspb.Message {
358
+ getAka(): string;
359
+ setAka(value: string): void;
360
+
361
+ serializeBinary(): Uint8Array;
362
+ toObject(includeInstance?: boolean): ContactSelfAkaRequest.AsObject;
363
+ static toObject(includeInstance: boolean, msg: ContactSelfAkaRequest): ContactSelfAkaRequest.AsObject;
364
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
365
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
366
+ static serializeBinaryToWriter(message: ContactSelfAkaRequest, writer: jspb.BinaryWriter): void;
367
+ static deserializeBinary(bytes: Uint8Array): ContactSelfAkaRequest;
368
+ static deserializeBinaryFromReader(message: ContactSelfAkaRequest, reader: jspb.BinaryReader): ContactSelfAkaRequest;
369
+ }
370
+
371
+ export namespace ContactSelfAkaRequest {
372
+ export type AsObject = {
373
+ aka: string,
374
+ }
375
+ }
376
+
377
+ export class ContactSelfAkaResponse extends jspb.Message {
378
+ serializeBinary(): Uint8Array;
379
+ toObject(includeInstance?: boolean): ContactSelfAkaResponse.AsObject;
380
+ static toObject(includeInstance: boolean, msg: ContactSelfAkaResponse): ContactSelfAkaResponse.AsObject;
381
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
382
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
383
+ static serializeBinaryToWriter(message: ContactSelfAkaResponse, writer: jspb.BinaryWriter): void;
384
+ static deserializeBinary(bytes: Uint8Array): ContactSelfAkaResponse;
385
+ static deserializeBinaryFromReader(message: ContactSelfAkaResponse, reader: jspb.BinaryReader): ContactSelfAkaResponse;
386
+ }
387
+
388
+ export namespace ContactSelfAkaResponse {
389
+ export type AsObject = {
390
+ }
391
+ }
392
+
313
393
  export class ContactAliasRequest extends jspb.Message {
314
394
  getId(): string;
315
395
  setId(value: string): void;