From acfdb90b6e1c2275a5bc81c1bb712500e9526374 Mon Sep 17 00:00:00 2001 From: wangchuxiao Date: Tue, 28 Feb 2023 16:05:33 +0800 Subject: [PATCH] pb --- pkg/proto/third/third.proto | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/pkg/proto/third/third.proto b/pkg/proto/third/third.proto index 76c59dfc2..ba00c1b40 100644 --- a/pkg/proto/third/third.proto +++ b/pkg/proto/third/third.proto @@ -1,4 +1,5 @@ syntax = "proto3"; +import "Open-IM-Server/pkg/proto/sdkws/ws.proto"; option go_package = "OpenIM/pkg/proto/third;third"; package third; @@ -26,8 +27,18 @@ message ConfirmSpaceResp { string confirmID = 1; } +message GetRTCInvitationInfoReq { + string ClientMsgID = 1; +} + +message GetRTCInvitationInfoResp { + sdkws.InvitationInfo invitationInfo = 1; + sdkws.OfflinePushInfo offlinePushInfo = 2; +} + service third { - rpc ApplySpaceReq(ApplySpaceReq) returns(ApplySpaceResp); + rpc ApplySpace(ApplySpaceReq) returns(ApplySpaceResp); + rpc GetRTCInvitationInfo() }