@juzi/wechaty-grpc 1.0.54 → 1.0.55
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/room_pb.d.ts +100 -0
- package/dist/cjs/out/wechaty/puppet/room_pb.js +759 -0
- package/dist/cjs/out/wechaty/puppet.openapi.yaml +66 -1
- package/dist/cjs/out/wechaty/puppet.swagger.json +102 -1
- 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/room.proto +20 -0
- package/dist/cjs/proto/wechaty/puppet.proto +12 -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/room_pb.d.ts +100 -0
- package/dist/esm/out/wechaty/puppet/room_pb.js +759 -0
- package/dist/esm/out/wechaty/puppet.openapi.yaml +66 -1
- package/dist/esm/out/wechaty/puppet.swagger.json +102 -1
- 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/room.proto +20 -0
- package/dist/esm/proto/wechaty/puppet.proto +12 -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/room_pb.d.ts +100 -0
- package/out/wechaty/puppet/room_pb.js +759 -0
- package/out/wechaty/puppet.openapi.yaml +66 -1
- package/out/wechaty/puppet.swagger.json +102 -1
- 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
|
@@ -526,3 +526,103 @@ export namespace RoomRemarkResponse {
|
|
|
526
526
|
}
|
|
527
527
|
}
|
|
528
528
|
|
|
529
|
+
export class RoomOwnerTransferRequest extends jspb.Message {
|
|
530
|
+
getId(): string;
|
|
531
|
+
setId(value: string): void;
|
|
532
|
+
|
|
533
|
+
getContactId(): string;
|
|
534
|
+
setContactId(value: string): void;
|
|
535
|
+
|
|
536
|
+
serializeBinary(): Uint8Array;
|
|
537
|
+
toObject(includeInstance?: boolean): RoomOwnerTransferRequest.AsObject;
|
|
538
|
+
static toObject(includeInstance: boolean, msg: RoomOwnerTransferRequest): RoomOwnerTransferRequest.AsObject;
|
|
539
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
540
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
541
|
+
static serializeBinaryToWriter(message: RoomOwnerTransferRequest, writer: jspb.BinaryWriter): void;
|
|
542
|
+
static deserializeBinary(bytes: Uint8Array): RoomOwnerTransferRequest;
|
|
543
|
+
static deserializeBinaryFromReader(message: RoomOwnerTransferRequest, reader: jspb.BinaryReader): RoomOwnerTransferRequest;
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
export namespace RoomOwnerTransferRequest {
|
|
547
|
+
export type AsObject = {
|
|
548
|
+
id: string,
|
|
549
|
+
contactId: string,
|
|
550
|
+
}
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
export class RoomOwnerTransferResponse extends jspb.Message {
|
|
554
|
+
serializeBinary(): Uint8Array;
|
|
555
|
+
toObject(includeInstance?: boolean): RoomOwnerTransferResponse.AsObject;
|
|
556
|
+
static toObject(includeInstance: boolean, msg: RoomOwnerTransferResponse): RoomOwnerTransferResponse.AsObject;
|
|
557
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
558
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
559
|
+
static serializeBinaryToWriter(message: RoomOwnerTransferResponse, writer: jspb.BinaryWriter): void;
|
|
560
|
+
static deserializeBinary(bytes: Uint8Array): RoomOwnerTransferResponse;
|
|
561
|
+
static deserializeBinaryFromReader(message: RoomOwnerTransferResponse, reader: jspb.BinaryReader): RoomOwnerTransferResponse;
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
export namespace RoomOwnerTransferResponse {
|
|
565
|
+
export type AsObject = {
|
|
566
|
+
}
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
export class RoomPermissionRequest extends jspb.Message {
|
|
570
|
+
getId(): string;
|
|
571
|
+
setId(value: string): void;
|
|
572
|
+
|
|
573
|
+
getSendMessage(): boolean;
|
|
574
|
+
setSendMessage(value: boolean): void;
|
|
575
|
+
|
|
576
|
+
getInvitationCheck(): boolean;
|
|
577
|
+
setInvitationCheck(value: boolean): void;
|
|
578
|
+
|
|
579
|
+
getRoomTopicEdit(): boolean;
|
|
580
|
+
setRoomTopicEdit(value: boolean): void;
|
|
581
|
+
|
|
582
|
+
serializeBinary(): Uint8Array;
|
|
583
|
+
toObject(includeInstance?: boolean): RoomPermissionRequest.AsObject;
|
|
584
|
+
static toObject(includeInstance: boolean, msg: RoomPermissionRequest): RoomPermissionRequest.AsObject;
|
|
585
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
586
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
587
|
+
static serializeBinaryToWriter(message: RoomPermissionRequest, writer: jspb.BinaryWriter): void;
|
|
588
|
+
static deserializeBinary(bytes: Uint8Array): RoomPermissionRequest;
|
|
589
|
+
static deserializeBinaryFromReader(message: RoomPermissionRequest, reader: jspb.BinaryReader): RoomPermissionRequest;
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
export namespace RoomPermissionRequest {
|
|
593
|
+
export type AsObject = {
|
|
594
|
+
id: string,
|
|
595
|
+
sendMessage: boolean,
|
|
596
|
+
invitationCheck: boolean,
|
|
597
|
+
roomTopicEdit: boolean,
|
|
598
|
+
}
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
export class RoomPermissionResponse extends jspb.Message {
|
|
602
|
+
getSendMessage(): boolean;
|
|
603
|
+
setSendMessage(value: boolean): void;
|
|
604
|
+
|
|
605
|
+
getInvitationCheck(): boolean;
|
|
606
|
+
setInvitationCheck(value: boolean): void;
|
|
607
|
+
|
|
608
|
+
getRoomTopicEdit(): boolean;
|
|
609
|
+
setRoomTopicEdit(value: boolean): void;
|
|
610
|
+
|
|
611
|
+
serializeBinary(): Uint8Array;
|
|
612
|
+
toObject(includeInstance?: boolean): RoomPermissionResponse.AsObject;
|
|
613
|
+
static toObject(includeInstance: boolean, msg: RoomPermissionResponse): RoomPermissionResponse.AsObject;
|
|
614
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
615
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
616
|
+
static serializeBinaryToWriter(message: RoomPermissionResponse, writer: jspb.BinaryWriter): void;
|
|
617
|
+
static deserializeBinary(bytes: Uint8Array): RoomPermissionResponse;
|
|
618
|
+
static deserializeBinaryFromReader(message: RoomPermissionResponse, reader: jspb.BinaryReader): RoomPermissionResponse;
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
export namespace RoomPermissionResponse {
|
|
622
|
+
export type AsObject = {
|
|
623
|
+
sendMessage: boolean,
|
|
624
|
+
invitationCheck: boolean,
|
|
625
|
+
roomTopicEdit: boolean,
|
|
626
|
+
}
|
|
627
|
+
}
|
|
628
|
+
|