Skip to content

Commit 1cf423c

Browse files
committed
Update xcframework for Xcode 15.2 (5.4.4.0-2024.07.17-3633142ae)
1 parent 35bbfdb commit 1cf423c

26 files changed

+1006
-28
lines changed

Frameworks/PlanetKit.xcframework/ios-arm64/PlanetKit.framework/Headers/PlanetKit-Swift.h

+18
Original file line numberDiff line numberDiff line change
@@ -2769,6 +2769,12 @@ SWIFT_CLASS("_TtC9PlanetKit37PlanetKitJoinConferenceSettingBuilder")
27692769
/// This interval value affects <code>PlanetKitConference.setPeerAudioDescriptionReceiver(_:)</code> and <code>PlanetKitConference.setMyAudioDescriptionReceiver(_:)</code>.
27702770
- (PlanetKitJoinConferenceSettingBuilder * _Nonnull)withAudioDescriptionUpdateIntervalKeyWithInterval:(NSTimeInterval)interval SWIFT_WARN_UNUSED_RESULT;
27712771
- (PlanetKitJoinConferenceSettingBuilder * _Nullable)withSetEndToneKeyWithFileResourceUrl:(NSURL * _Nonnull)fileResourceUrl error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
2772+
/// Sets whether the end tone should be played regardless of the conference state.
2773+
/// remark:
2774+
///
2775+
/// When set to <code>true</code>, this function allows the end tone to be played regardless of the conference state.
2776+
/// The default value is <code>false</code>.
2777+
- (PlanetKitJoinConferenceSettingBuilder * _Nullable)withPlayEndToneRegardlessOfConferenceStateKeyWithEnable:(BOOL)enable error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
27722778
- (NSDictionary<NSString *, id> * _Nonnull)build SWIFT_WARN_UNUSED_RESULT;
27732779
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
27742780
@end
@@ -2900,6 +2906,12 @@ SWIFT_CLASS("_TtC9PlanetKit31PlanetKitMakeCallSettingBuilder")
29002906
- (PlanetKitMakeCallSettingBuilder * _Nonnull)withAllowCallWithoutMicKeyWithAllow:(BOOL)allow SWIFT_WARN_UNUSED_RESULT;
29012907
- (PlanetKitMakeCallSettingBuilder * _Nullable)withSetRingbackToneKeyWithFileResourceUrl:(NSURL * _Nonnull)fileResourceUrl error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
29022908
- (PlanetKitMakeCallSettingBuilder * _Nullable)withSetEndToneKeyWithFileResourceUrl:(NSURL * _Nonnull)fileResourceUrl error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
2909+
/// Sets whether the end tone should be played regardless of the call state.
2910+
/// remark:
2911+
///
2912+
/// When set to <code>true</code>, this function allows the end tone to be played regardless of the call state.
2913+
/// The default value is <code>false</code>.
2914+
- (PlanetKitMakeCallSettingBuilder * _Nullable)withPlayEndToneRegardlessOfCallStateKeyWithEnable:(BOOL)enable error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
29032915
- (PlanetKitMakeCallSettingBuilder * _Nullable)withSetHoldToneKeyWithFileResourceUrl:(NSURL * _Nonnull)fileResourceUrl error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
29042916
/// Sets preferred maximum video encoding settings.
29052917
/// remark:
@@ -3890,6 +3902,12 @@ SWIFT_CLASS("_TtC9PlanetKit33PlanetKitVerifyCallSettingBuilder")
38903902
- (PlanetKitVerifyCallSettingBuilder * _Nonnull)withAllowCallWithoutMicKeyWithAllow:(BOOL)allow SWIFT_WARN_UNUSED_RESULT;
38913903
- (PlanetKitVerifyCallSettingBuilder * _Nullable)withSetRingToneKeyWithFileResourceUrl:(NSURL * _Nonnull)fileResourceUrl error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
38923904
- (PlanetKitVerifyCallSettingBuilder * _Nullable)withSetEndToneKeyWithFileResourceUrl:(NSURL * _Nonnull)fileResourceUrl error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
3905+
/// Sets whether the end tone should be played regardless of the call state.
3906+
/// remark:
3907+
///
3908+
/// When set to <code>true</code>, this function allows the end tone to be played regardless of the call state.
3909+
/// The default value is <code>false</code>.
3910+
- (PlanetKitVerifyCallSettingBuilder * _Nullable)withPlayEndToneRegardlessOfCallStateKeyWithEnable:(BOOL)enable error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
38933911
- (PlanetKitVerifyCallSettingBuilder * _Nullable)withSetHoldToneKeyWithFileResourceUrl:(NSURL * _Nonnull)fileResourceUrl error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
38943912
/// Sets preferred maximum video encoding settings.
38953913
/// remark:

Frameworks/PlanetKit.xcframework/ios-arm64/PlanetKit.framework/Headers/planetkit_common.h

+2
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,8 @@ kit_bool_t planetkit_is_valid_id(planetkit_str_t NONNULL id);
125125
kit_bool_t planetkit_is_valid_service_id(planetkit_str_t NONNULL service_id);
126126
kit_bool_t planetkit_is_valid_api_key(planetkit_str_t NONNULL api_key);
127127

128+
kit_bool_t planetkit_disconnect_reason_is_normal(planetkit_disconnect_reason_e reason);
129+
128130
/**
129131
* APIs to update settings
130132
*/
Binary file not shown.

Frameworks/PlanetKit.xcframework/ios-arm64/PlanetKit.framework/Modules/PlanetKit.swiftmodule/arm64-apple-ios.swiftinterface

+3
Original file line numberDiff line numberDiff line change
@@ -2247,6 +2247,7 @@ extension PlanetKit.PlanetKitAudioMic : PlanetKit.PlanetAudioUnitTargetDelegate
22472247
@objc public func withAllowCallWithoutMicKey(allow: Swift.Bool) -> PlanetKit.PlanetKitMakeCallSettingBuilder
22482248
@objc public func withSetRingbackToneKey(fileResourceUrl: Foundation.URL) throws -> PlanetKit.PlanetKitMakeCallSettingBuilder
22492249
@objc public func withSetEndToneKey(fileResourceUrl: Foundation.URL) throws -> PlanetKit.PlanetKitMakeCallSettingBuilder
2250+
@objc public func withPlayEndToneRegardlessOfCallStateKey(enable: Swift.Bool) throws -> PlanetKit.PlanetKitMakeCallSettingBuilder
22502251
@objc public func withSetHoldToneKey(fileResourceUrl: Foundation.URL) throws -> PlanetKit.PlanetKitMakeCallSettingBuilder
22512252
@objc public func withMyVideoSendCapabilityKey(capability: PlanetKit.PlanetKitVideoCapability) -> PlanetKit.PlanetKitMakeCallSettingBuilder
22522253
@objc public func withMyVideoReceiveCapabilityKey(capability: PlanetKit.PlanetKitVideoCapability) -> PlanetKit.PlanetKitMakeCallSettingBuilder
@@ -2274,6 +2275,7 @@ extension PlanetKit.PlanetKitAudioMic : PlanetKit.PlanetAudioUnitTargetDelegate
22742275
@objc public func withAllowCallWithoutMicKey(allow: Swift.Bool) -> PlanetKit.PlanetKitVerifyCallSettingBuilder
22752276
@objc public func withSetRingToneKey(fileResourceUrl: Foundation.URL) throws -> PlanetKit.PlanetKitVerifyCallSettingBuilder
22762277
@objc public func withSetEndToneKey(fileResourceUrl: Foundation.URL) throws -> PlanetKit.PlanetKitVerifyCallSettingBuilder
2278+
@objc public func withPlayEndToneRegardlessOfCallStateKey(enable: Swift.Bool) throws -> PlanetKit.PlanetKitVerifyCallSettingBuilder
22772279
@objc public func withSetHoldToneKey(fileResourceUrl: Foundation.URL) throws -> PlanetKit.PlanetKitVerifyCallSettingBuilder
22782280
@objc public func withMyVideoSendCapabilityKey(capability: PlanetKit.PlanetKitVideoCapability) -> PlanetKit.PlanetKitVerifyCallSettingBuilder
22792281
@objc public func withMyVideoReceiveCapabilityKey(capability: PlanetKit.PlanetKitVideoCapability) -> PlanetKit.PlanetKitVerifyCallSettingBuilder
@@ -2317,6 +2319,7 @@ extension PlanetKit.PlanetKitAudioMic : PlanetKit.PlanetAudioUnitTargetDelegate
23172319
@objc public func withEnableAudioDescriptionKey(enable: Swift.Bool) -> PlanetKit.PlanetKitJoinConferenceSettingBuilder
23182320
@objc public func withAudioDescriptionUpdateIntervalKey(interval: Foundation.TimeInterval) -> PlanetKit.PlanetKitJoinConferenceSettingBuilder
23192321
@objc public func withSetEndToneKey(fileResourceUrl: Foundation.URL) throws -> PlanetKit.PlanetKitJoinConferenceSettingBuilder
2322+
@objc public func withPlayEndToneRegardlessOfConferenceStateKey(enable: Swift.Bool) throws -> PlanetKit.PlanetKitJoinConferenceSettingBuilder
23202323
@objc public func build() -> [Swift.String : Any]
23212324
@objc override dynamic public init()
23222325
@objc deinit
Binary file not shown.

Frameworks/PlanetKit.xcframework/ios-arm64_x86_64-simulator/PlanetKit.framework/Headers/PlanetKit-Swift.h

+36
Original file line numberDiff line numberDiff line change
@@ -2769,6 +2769,12 @@ SWIFT_CLASS("_TtC9PlanetKit37PlanetKitJoinConferenceSettingBuilder")
27692769
/// This interval value affects <code>PlanetKitConference.setPeerAudioDescriptionReceiver(_:)</code> and <code>PlanetKitConference.setMyAudioDescriptionReceiver(_:)</code>.
27702770
- (PlanetKitJoinConferenceSettingBuilder * _Nonnull)withAudioDescriptionUpdateIntervalKeyWithInterval:(NSTimeInterval)interval SWIFT_WARN_UNUSED_RESULT;
27712771
- (PlanetKitJoinConferenceSettingBuilder * _Nullable)withSetEndToneKeyWithFileResourceUrl:(NSURL * _Nonnull)fileResourceUrl error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
2772+
/// Sets whether the end tone should be played regardless of the conference state.
2773+
/// remark:
2774+
///
2775+
/// When set to <code>true</code>, this function allows the end tone to be played regardless of the conference state.
2776+
/// The default value is <code>false</code>.
2777+
- (PlanetKitJoinConferenceSettingBuilder * _Nullable)withPlayEndToneRegardlessOfConferenceStateKeyWithEnable:(BOOL)enable error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
27722778
- (NSDictionary<NSString *, id> * _Nonnull)build SWIFT_WARN_UNUSED_RESULT;
27732779
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
27742780
@end
@@ -2900,6 +2906,12 @@ SWIFT_CLASS("_TtC9PlanetKit31PlanetKitMakeCallSettingBuilder")
29002906
- (PlanetKitMakeCallSettingBuilder * _Nonnull)withAllowCallWithoutMicKeyWithAllow:(BOOL)allow SWIFT_WARN_UNUSED_RESULT;
29012907
- (PlanetKitMakeCallSettingBuilder * _Nullable)withSetRingbackToneKeyWithFileResourceUrl:(NSURL * _Nonnull)fileResourceUrl error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
29022908
- (PlanetKitMakeCallSettingBuilder * _Nullable)withSetEndToneKeyWithFileResourceUrl:(NSURL * _Nonnull)fileResourceUrl error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
2909+
/// Sets whether the end tone should be played regardless of the call state.
2910+
/// remark:
2911+
///
2912+
/// When set to <code>true</code>, this function allows the end tone to be played regardless of the call state.
2913+
/// The default value is <code>false</code>.
2914+
- (PlanetKitMakeCallSettingBuilder * _Nullable)withPlayEndToneRegardlessOfCallStateKeyWithEnable:(BOOL)enable error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
29032915
- (PlanetKitMakeCallSettingBuilder * _Nullable)withSetHoldToneKeyWithFileResourceUrl:(NSURL * _Nonnull)fileResourceUrl error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
29042916
/// Sets preferred maximum video encoding settings.
29052917
/// remark:
@@ -3890,6 +3902,12 @@ SWIFT_CLASS("_TtC9PlanetKit33PlanetKitVerifyCallSettingBuilder")
38903902
- (PlanetKitVerifyCallSettingBuilder * _Nonnull)withAllowCallWithoutMicKeyWithAllow:(BOOL)allow SWIFT_WARN_UNUSED_RESULT;
38913903
- (PlanetKitVerifyCallSettingBuilder * _Nullable)withSetRingToneKeyWithFileResourceUrl:(NSURL * _Nonnull)fileResourceUrl error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
38923904
- (PlanetKitVerifyCallSettingBuilder * _Nullable)withSetEndToneKeyWithFileResourceUrl:(NSURL * _Nonnull)fileResourceUrl error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
3905+
/// Sets whether the end tone should be played regardless of the call state.
3906+
/// remark:
3907+
///
3908+
/// When set to <code>true</code>, this function allows the end tone to be played regardless of the call state.
3909+
/// The default value is <code>false</code>.
3910+
- (PlanetKitVerifyCallSettingBuilder * _Nullable)withPlayEndToneRegardlessOfCallStateKeyWithEnable:(BOOL)enable error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
38933911
- (PlanetKitVerifyCallSettingBuilder * _Nullable)withSetHoldToneKeyWithFileResourceUrl:(NSURL * _Nonnull)fileResourceUrl error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
38943912
/// Sets preferred maximum video encoding settings.
38953913
/// remark:
@@ -6970,6 +6988,12 @@ SWIFT_CLASS("_TtC9PlanetKit37PlanetKitJoinConferenceSettingBuilder")
69706988
/// This interval value affects <code>PlanetKitConference.setPeerAudioDescriptionReceiver(_:)</code> and <code>PlanetKitConference.setMyAudioDescriptionReceiver(_:)</code>.
69716989
- (PlanetKitJoinConferenceSettingBuilder * _Nonnull)withAudioDescriptionUpdateIntervalKeyWithInterval:(NSTimeInterval)interval SWIFT_WARN_UNUSED_RESULT;
69726990
- (PlanetKitJoinConferenceSettingBuilder * _Nullable)withSetEndToneKeyWithFileResourceUrl:(NSURL * _Nonnull)fileResourceUrl error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
6991+
/// Sets whether the end tone should be played regardless of the conference state.
6992+
/// remark:
6993+
///
6994+
/// When set to <code>true</code>, this function allows the end tone to be played regardless of the conference state.
6995+
/// The default value is <code>false</code>.
6996+
- (PlanetKitJoinConferenceSettingBuilder * _Nullable)withPlayEndToneRegardlessOfConferenceStateKeyWithEnable:(BOOL)enable error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
69736997
- (NSDictionary<NSString *, id> * _Nonnull)build SWIFT_WARN_UNUSED_RESULT;
69746998
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
69756999
@end
@@ -7101,6 +7125,12 @@ SWIFT_CLASS("_TtC9PlanetKit31PlanetKitMakeCallSettingBuilder")
71017125
- (PlanetKitMakeCallSettingBuilder * _Nonnull)withAllowCallWithoutMicKeyWithAllow:(BOOL)allow SWIFT_WARN_UNUSED_RESULT;
71027126
- (PlanetKitMakeCallSettingBuilder * _Nullable)withSetRingbackToneKeyWithFileResourceUrl:(NSURL * _Nonnull)fileResourceUrl error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
71037127
- (PlanetKitMakeCallSettingBuilder * _Nullable)withSetEndToneKeyWithFileResourceUrl:(NSURL * _Nonnull)fileResourceUrl error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
7128+
/// Sets whether the end tone should be played regardless of the call state.
7129+
/// remark:
7130+
///
7131+
/// When set to <code>true</code>, this function allows the end tone to be played regardless of the call state.
7132+
/// The default value is <code>false</code>.
7133+
- (PlanetKitMakeCallSettingBuilder * _Nullable)withPlayEndToneRegardlessOfCallStateKeyWithEnable:(BOOL)enable error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
71047134
- (PlanetKitMakeCallSettingBuilder * _Nullable)withSetHoldToneKeyWithFileResourceUrl:(NSURL * _Nonnull)fileResourceUrl error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
71057135
/// Sets preferred maximum video encoding settings.
71067136
/// remark:
@@ -8091,6 +8121,12 @@ SWIFT_CLASS("_TtC9PlanetKit33PlanetKitVerifyCallSettingBuilder")
80918121
- (PlanetKitVerifyCallSettingBuilder * _Nonnull)withAllowCallWithoutMicKeyWithAllow:(BOOL)allow SWIFT_WARN_UNUSED_RESULT;
80928122
- (PlanetKitVerifyCallSettingBuilder * _Nullable)withSetRingToneKeyWithFileResourceUrl:(NSURL * _Nonnull)fileResourceUrl error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
80938123
- (PlanetKitVerifyCallSettingBuilder * _Nullable)withSetEndToneKeyWithFileResourceUrl:(NSURL * _Nonnull)fileResourceUrl error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
8124+
/// Sets whether the end tone should be played regardless of the call state.
8125+
/// remark:
8126+
///
8127+
/// When set to <code>true</code>, this function allows the end tone to be played regardless of the call state.
8128+
/// The default value is <code>false</code>.
8129+
- (PlanetKitVerifyCallSettingBuilder * _Nullable)withPlayEndToneRegardlessOfCallStateKeyWithEnable:(BOOL)enable error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
80948130
- (PlanetKitVerifyCallSettingBuilder * _Nullable)withSetHoldToneKeyWithFileResourceUrl:(NSURL * _Nonnull)fileResourceUrl error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
80958131
/// Sets preferred maximum video encoding settings.
80968132
/// remark:

Frameworks/PlanetKit.xcframework/ios-arm64_x86_64-simulator/PlanetKit.framework/Headers/planetkit_common.h

+2
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,8 @@ kit_bool_t planetkit_is_valid_id(planetkit_str_t NONNULL id);
125125
kit_bool_t planetkit_is_valid_service_id(planetkit_str_t NONNULL service_id);
126126
kit_bool_t planetkit_is_valid_api_key(planetkit_str_t NONNULL api_key);
127127

128+
kit_bool_t planetkit_disconnect_reason_is_normal(planetkit_disconnect_reason_e reason);
129+
128130
/**
129131
* APIs to update settings
130132
*/

Frameworks/PlanetKit.xcframework/ios-arm64_x86_64-simulator/PlanetKit.framework/Modules/PlanetKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface

+3
Original file line numberDiff line numberDiff line change
@@ -2247,6 +2247,7 @@ extension PlanetKit.PlanetKitAudioMic : PlanetKit.PlanetAudioUnitTargetDelegate
22472247
@objc public func withAllowCallWithoutMicKey(allow: Swift.Bool) -> PlanetKit.PlanetKitMakeCallSettingBuilder
22482248
@objc public func withSetRingbackToneKey(fileResourceUrl: Foundation.URL) throws -> PlanetKit.PlanetKitMakeCallSettingBuilder
22492249
@objc public func withSetEndToneKey(fileResourceUrl: Foundation.URL) throws -> PlanetKit.PlanetKitMakeCallSettingBuilder
2250+
@objc public func withPlayEndToneRegardlessOfCallStateKey(enable: Swift.Bool) throws -> PlanetKit.PlanetKitMakeCallSettingBuilder
22502251
@objc public func withSetHoldToneKey(fileResourceUrl: Foundation.URL) throws -> PlanetKit.PlanetKitMakeCallSettingBuilder
22512252
@objc public func withMyVideoSendCapabilityKey(capability: PlanetKit.PlanetKitVideoCapability) -> PlanetKit.PlanetKitMakeCallSettingBuilder
22522253
@objc public func withMyVideoReceiveCapabilityKey(capability: PlanetKit.PlanetKitVideoCapability) -> PlanetKit.PlanetKitMakeCallSettingBuilder
@@ -2274,6 +2275,7 @@ extension PlanetKit.PlanetKitAudioMic : PlanetKit.PlanetAudioUnitTargetDelegate
22742275
@objc public func withAllowCallWithoutMicKey(allow: Swift.Bool) -> PlanetKit.PlanetKitVerifyCallSettingBuilder
22752276
@objc public func withSetRingToneKey(fileResourceUrl: Foundation.URL) throws -> PlanetKit.PlanetKitVerifyCallSettingBuilder
22762277
@objc public func withSetEndToneKey(fileResourceUrl: Foundation.URL) throws -> PlanetKit.PlanetKitVerifyCallSettingBuilder
2278+
@objc public func withPlayEndToneRegardlessOfCallStateKey(enable: Swift.Bool) throws -> PlanetKit.PlanetKitVerifyCallSettingBuilder
22772279
@objc public func withSetHoldToneKey(fileResourceUrl: Foundation.URL) throws -> PlanetKit.PlanetKitVerifyCallSettingBuilder
22782280
@objc public func withMyVideoSendCapabilityKey(capability: PlanetKit.PlanetKitVideoCapability) -> PlanetKit.PlanetKitVerifyCallSettingBuilder
22792281
@objc public func withMyVideoReceiveCapabilityKey(capability: PlanetKit.PlanetKitVideoCapability) -> PlanetKit.PlanetKitVerifyCallSettingBuilder
@@ -2317,6 +2319,7 @@ extension PlanetKit.PlanetKitAudioMic : PlanetKit.PlanetAudioUnitTargetDelegate
23172319
@objc public func withEnableAudioDescriptionKey(enable: Swift.Bool) -> PlanetKit.PlanetKitJoinConferenceSettingBuilder
23182320
@objc public func withAudioDescriptionUpdateIntervalKey(interval: Foundation.TimeInterval) -> PlanetKit.PlanetKitJoinConferenceSettingBuilder
23192321
@objc public func withSetEndToneKey(fileResourceUrl: Foundation.URL) throws -> PlanetKit.PlanetKitJoinConferenceSettingBuilder
2322+
@objc public func withPlayEndToneRegardlessOfConferenceStateKey(enable: Swift.Bool) throws -> PlanetKit.PlanetKitJoinConferenceSettingBuilder
23202323
@objc public func build() -> [Swift.String : Any]
23212324
@objc override dynamic public init()
23222325
@objc deinit

0 commit comments

Comments
 (0)