chengyanfang

sdk upgrade

Showing 58 changed files with 2 additions and 74 deletions
Pod::Spec.new do |s|
s.name = "HHMedicSDK"
s.version = "3.1.2.041919"
s.version = "3.1.2.041920"
s.summary = "和缓基础SDK"
s.description = <<-DESC
... ...
... ... @@ -3,5 +3,5 @@
<plist version="1.0">
<dict>
<key>HHBundleVersion</key>
<string>3.1.2.041919</string></dict>
<string>3.1.2.041920</string></dict>
</plist>
... ...
... ... @@ -643,22 +643,6 @@ SWIFT_PROTOCOL("_TtP10HHSDKVideo5HHRTC_")
- (void)startRingWithAudioId:(NSInteger)audioId;
/// 结束响铃
- (void)stopRing;
/// 主叫 - 多人创建&加入房间
- (void)createJoinMeetingWithOrderId:(NSString * _Nonnull)orderId completion:(void (^ _Nonnull)(NSError * _Nullable, uint64_t))completion;
/// 主叫 - 创建信道并加入
- (void)createJoinChannelWithSigCustomInfo:(NSString * _Nonnull)sigCustomInfo completion:(void (^ _Nonnull)(NSError * _Nullable, NSString * _Nonnull))completion;
/// 主叫 - 邀请成员
- (void)inviteMembersWithUuid:(NSString * _Nonnull)uuid channelId:(NSString * _Nonnull)channelId requestId:(NSString * _Nonnull)requestId customInfo:(NSString * _Nonnull)customInfo isToMember:(BOOL)isToMember myName:(NSString * _Nonnull)myName completion:(void (^ _Nonnull)(NSError * _Nullable, uint64_t))completion;
/// 主叫 - 取消邀请成员
- (void)cancelInviteWithUuid:(NSString * _Nonnull)uuid channelId:(NSString * _Nonnull)channelId requestId:(NSString * _Nonnull)requestId customInfo:(NSString * _Nonnull)customInfo completion:(void (^ _Nonnull)(NSError * _Nullable, uint64_t))completion;
/// 被叫 - 拒听
- (void)sendBusyLine:(NSString * _Nullable)cusInfo channelId:(NSString * _Nonnull)channelId;
/// 被叫 - 加入房间
- (void)joinMeetWithOrderId:(NSString * _Nonnull)orderId completion:(void (^ _Nonnull)(NSError * _Nullable))completion;
/// 被叫 - 加入房间成功信令
- (void)acceptSignalWithAccountId:(NSString * _Nonnull)accountId channelId:(NSString * _Nonnull)channelId requestId:(NSString * _Nonnull)requestId customInfo:(NSString * _Nonnull)customInfo completion:(void (^ _Nonnull)(NSError * _Nullable))completion;
/// 被叫 - 发送自定义信令
- (void)sendCusSignalWithChannelId:(NSString * _Nonnull)channelId customStr:(NSString * _Nonnull)customStr completion:(void (^ _Nonnull)(NSError * _Nullable))completion;
@end
... ... @@ -1411,22 +1395,6 @@ SWIFT_PROTOCOL("_TtP10HHSDKVideo5HHRTC_")
- (void)startRingWithAudioId:(NSInteger)audioId;
/// 结束响铃
- (void)stopRing;
/// 主叫 - 多人创建&加入房间
- (void)createJoinMeetingWithOrderId:(NSString * _Nonnull)orderId completion:(void (^ _Nonnull)(NSError * _Nullable, uint64_t))completion;
/// 主叫 - 创建信道并加入
- (void)createJoinChannelWithSigCustomInfo:(NSString * _Nonnull)sigCustomInfo completion:(void (^ _Nonnull)(NSError * _Nullable, NSString * _Nonnull))completion;
/// 主叫 - 邀请成员
- (void)inviteMembersWithUuid:(NSString * _Nonnull)uuid channelId:(NSString * _Nonnull)channelId requestId:(NSString * _Nonnull)requestId customInfo:(NSString * _Nonnull)customInfo isToMember:(BOOL)isToMember myName:(NSString * _Nonnull)myName completion:(void (^ _Nonnull)(NSError * _Nullable, uint64_t))completion;
/// 主叫 - 取消邀请成员
- (void)cancelInviteWithUuid:(NSString * _Nonnull)uuid channelId:(NSString * _Nonnull)channelId requestId:(NSString * _Nonnull)requestId customInfo:(NSString * _Nonnull)customInfo completion:(void (^ _Nonnull)(NSError * _Nullable, uint64_t))completion;
/// 被叫 - 拒听
- (void)sendBusyLine:(NSString * _Nullable)cusInfo channelId:(NSString * _Nonnull)channelId;
/// 被叫 - 加入房间
- (void)joinMeetWithOrderId:(NSString * _Nonnull)orderId completion:(void (^ _Nonnull)(NSError * _Nullable))completion;
/// 被叫 - 加入房间成功信令
- (void)acceptSignalWithAccountId:(NSString * _Nonnull)accountId channelId:(NSString * _Nonnull)channelId requestId:(NSString * _Nonnull)requestId customInfo:(NSString * _Nonnull)customInfo completion:(void (^ _Nonnull)(NSError * _Nullable))completion;
/// 被叫 - 发送自定义信令
- (void)sendCusSignalWithChannelId:(NSString * _Nonnull)channelId customStr:(NSString * _Nonnull)customStr completion:(void (^ _Nonnull)(NSError * _Nullable))completion;
@end
... ...
... ... @@ -1151,14 +1151,6 @@ extension EKAttributes {
@objc optional func hangUp(callId: Swift.UInt64)
@objc optional func startRing(audioId: Swift.Int)
@objc optional func stopRing()
@objc optional func createJoinMeeting(orderId: Swift.String, completion: @escaping ((Swift.Error?, Swift.UInt64) -> Swift.Void))
@objc optional func createJoinChannel(sigCustomInfo: Swift.String, completion: @escaping ((Swift.Error?, Swift.String) -> Swift.Void))
@objc optional func inviteMembers(uuid: Swift.String, channelId: Swift.String, requestId: Swift.String, customInfo: Swift.String, isToMember: Swift.Bool, myName: Swift.String, completion: @escaping ((Swift.Error?, Swift.UInt64) -> Swift.Void))
@objc optional func cancelInvite(uuid: Swift.String, channelId: Swift.String, requestId: Swift.String, customInfo: Swift.String, completion: @escaping ((Swift.Error?, Swift.UInt64) -> Swift.Void))
@objc optional func sendBusyLine(_ cusInfo: Swift.String?, channelId: Swift.String)
@objc optional func joinMeet(orderId: Swift.String, completion: @escaping ((Swift.Error?) -> Swift.Void))
@objc optional func acceptSignal(accountId: Swift.String, channelId: Swift.String, requestId: Swift.String, customInfo: Swift.String, completion: @escaping ((Swift.Error?) -> Swift.Void))
@objc optional func sendCusSignal(channelId: Swift.String, customStr: Swift.String, completion: @escaping ((Swift.Error?) -> Swift.Void))
}
public struct VideoApi {
}
... ...
... ... @@ -1151,14 +1151,6 @@ extension EKAttributes {
@objc optional func hangUp(callId: Swift.UInt64)
@objc optional func startRing(audioId: Swift.Int)
@objc optional func stopRing()
@objc optional func createJoinMeeting(orderId: Swift.String, completion: @escaping ((Swift.Error?, Swift.UInt64) -> Swift.Void))
@objc optional func createJoinChannel(sigCustomInfo: Swift.String, completion: @escaping ((Swift.Error?, Swift.String) -> Swift.Void))
@objc optional func inviteMembers(uuid: Swift.String, channelId: Swift.String, requestId: Swift.String, customInfo: Swift.String, isToMember: Swift.Bool, myName: Swift.String, completion: @escaping ((Swift.Error?, Swift.UInt64) -> Swift.Void))
@objc optional func cancelInvite(uuid: Swift.String, channelId: Swift.String, requestId: Swift.String, customInfo: Swift.String, completion: @escaping ((Swift.Error?, Swift.UInt64) -> Swift.Void))
@objc optional func sendBusyLine(_ cusInfo: Swift.String?, channelId: Swift.String)
@objc optional func joinMeet(orderId: Swift.String, completion: @escaping ((Swift.Error?) -> Swift.Void))
@objc optional func acceptSignal(accountId: Swift.String, channelId: Swift.String, requestId: Swift.String, customInfo: Swift.String, completion: @escaping ((Swift.Error?) -> Swift.Void))
@objc optional func sendCusSignal(channelId: Swift.String, customStr: Swift.String, completion: @escaping ((Swift.Error?) -> Swift.Void))
}
public struct VideoApi {
}
... ...
... ... @@ -1151,14 +1151,6 @@ extension EKAttributes {
@objc optional func hangUp(callId: Swift.UInt64)
@objc optional func startRing(audioId: Swift.Int)
@objc optional func stopRing()
@objc optional func createJoinMeeting(orderId: Swift.String, completion: @escaping ((Swift.Error?, Swift.UInt64) -> Swift.Void))
@objc optional func createJoinChannel(sigCustomInfo: Swift.String, completion: @escaping ((Swift.Error?, Swift.String) -> Swift.Void))
@objc optional func inviteMembers(uuid: Swift.String, channelId: Swift.String, requestId: Swift.String, customInfo: Swift.String, isToMember: Swift.Bool, myName: Swift.String, completion: @escaping ((Swift.Error?, Swift.UInt64) -> Swift.Void))
@objc optional func cancelInvite(uuid: Swift.String, channelId: Swift.String, requestId: Swift.String, customInfo: Swift.String, completion: @escaping ((Swift.Error?, Swift.UInt64) -> Swift.Void))
@objc optional func sendBusyLine(_ cusInfo: Swift.String?, channelId: Swift.String)
@objc optional func joinMeet(orderId: Swift.String, completion: @escaping ((Swift.Error?) -> Swift.Void))
@objc optional func acceptSignal(accountId: Swift.String, channelId: Swift.String, requestId: Swift.String, customInfo: Swift.String, completion: @escaping ((Swift.Error?) -> Swift.Void))
@objc optional func sendCusSignal(channelId: Swift.String, customStr: Swift.String, completion: @escaping ((Swift.Error?) -> Swift.Void))
}
public struct VideoApi {
}
... ...
... ... @@ -1151,14 +1151,6 @@ extension EKAttributes {
@objc optional func hangUp(callId: Swift.UInt64)
@objc optional func startRing(audioId: Swift.Int)
@objc optional func stopRing()
@objc optional func createJoinMeeting(orderId: Swift.String, completion: @escaping ((Swift.Error?, Swift.UInt64) -> Swift.Void))
@objc optional func createJoinChannel(sigCustomInfo: Swift.String, completion: @escaping ((Swift.Error?, Swift.String) -> Swift.Void))
@objc optional func inviteMembers(uuid: Swift.String, channelId: Swift.String, requestId: Swift.String, customInfo: Swift.String, isToMember: Swift.Bool, myName: Swift.String, completion: @escaping ((Swift.Error?, Swift.UInt64) -> Swift.Void))
@objc optional func cancelInvite(uuid: Swift.String, channelId: Swift.String, requestId: Swift.String, customInfo: Swift.String, completion: @escaping ((Swift.Error?, Swift.UInt64) -> Swift.Void))
@objc optional func sendBusyLine(_ cusInfo: Swift.String?, channelId: Swift.String)
@objc optional func joinMeet(orderId: Swift.String, completion: @escaping ((Swift.Error?) -> Swift.Void))
@objc optional func acceptSignal(accountId: Swift.String, channelId: Swift.String, requestId: Swift.String, customInfo: Swift.String, completion: @escaping ((Swift.Error?) -> Swift.Void))
@objc optional func sendCusSignal(channelId: Swift.String, customStr: Swift.String, completion: @escaping ((Swift.Error?) -> Swift.Void))
}
public struct VideoApi {
}
... ...
... ... @@ -1151,14 +1151,6 @@ extension EKAttributes {
@objc optional func hangUp(callId: Swift.UInt64)
@objc optional func startRing(audioId: Swift.Int)
@objc optional func stopRing()
@objc optional func createJoinMeeting(orderId: Swift.String, completion: @escaping ((Swift.Error?, Swift.UInt64) -> Swift.Void))
@objc optional func createJoinChannel(sigCustomInfo: Swift.String, completion: @escaping ((Swift.Error?, Swift.String) -> Swift.Void))
@objc optional func inviteMembers(uuid: Swift.String, channelId: Swift.String, requestId: Swift.String, customInfo: Swift.String, isToMember: Swift.Bool, myName: Swift.String, completion: @escaping ((Swift.Error?, Swift.UInt64) -> Swift.Void))
@objc optional func cancelInvite(uuid: Swift.String, channelId: Swift.String, requestId: Swift.String, customInfo: Swift.String, completion: @escaping ((Swift.Error?, Swift.UInt64) -> Swift.Void))
@objc optional func sendBusyLine(_ cusInfo: Swift.String?, channelId: Swift.String)
@objc optional func joinMeet(orderId: Swift.String, completion: @escaping ((Swift.Error?) -> Swift.Void))
@objc optional func acceptSignal(accountId: Swift.String, channelId: Swift.String, requestId: Swift.String, customInfo: Swift.String, completion: @escaping ((Swift.Error?) -> Swift.Void))
@objc optional func sendCusSignal(channelId: Swift.String, customStr: Swift.String, completion: @escaping ((Swift.Error?) -> Swift.Void))
}
public struct VideoApi {
}
... ...