@recallai/desktop-sdk 2024.1.28-ed4c05a2ec5340a21818e8292a2c8f86359502da
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/WebRTC.framework/Headers/RTCAudioSource.h +32 -0
- package/WebRTC.framework/Headers/RTCAudioTrack.h +28 -0
- package/WebRTC.framework/Headers/RTCCVPixelBuffer.h +52 -0
- package/WebRTC.framework/Headers/RTCCallbackLogger.h +41 -0
- package/WebRTC.framework/Headers/RTCCameraVideoCapturer.h +56 -0
- package/WebRTC.framework/Headers/RTCCertificate.h +44 -0
- package/WebRTC.framework/Headers/RTCCodecSpecificInfo.h +24 -0
- package/WebRTC.framework/Headers/RTCCodecSpecificInfoH264.h +27 -0
- package/WebRTC.framework/Headers/RTCConfiguration.h +262 -0
- package/WebRTC.framework/Headers/RTCCryptoOptions.h +63 -0
- package/WebRTC.framework/Headers/RTCDataChannel.h +132 -0
- package/WebRTC.framework/Headers/RTCDataChannelConfiguration.h +52 -0
- package/WebRTC.framework/Headers/RTCDefaultVideoDecoderFactory.h +26 -0
- package/WebRTC.framework/Headers/RTCDefaultVideoEncoderFactory.h +31 -0
- package/WebRTC.framework/Headers/RTCDispatcher.h +46 -0
- package/WebRTC.framework/Headers/RTCDtmfSender.h +71 -0
- package/WebRTC.framework/Headers/RTCEncodedImage.h +52 -0
- package/WebRTC.framework/Headers/RTCFieldTrials.h +30 -0
- package/WebRTC.framework/Headers/RTCFileLogger.h +74 -0
- package/WebRTC.framework/Headers/RTCFileVideoCapturer.h +51 -0
- package/WebRTC.framework/Headers/RTCH264ProfileLevelId.h +60 -0
- package/WebRTC.framework/Headers/RTCI420Buffer.h +22 -0
- package/WebRTC.framework/Headers/RTCIceCandidate.h +49 -0
- package/WebRTC.framework/Headers/RTCIceCandidateErrorEvent.h +42 -0
- package/WebRTC.framework/Headers/RTCIceServer.h +114 -0
- package/WebRTC.framework/Headers/RTCLegacyStatsReport.h +37 -0
- package/WebRTC.framework/Headers/RTCLogging.h +66 -0
- package/WebRTC.framework/Headers/RTCMTLNSVideoView.h +22 -0
- package/WebRTC.framework/Headers/RTCMacros.h +63 -0
- package/WebRTC.framework/Headers/RTCMediaConstraints.h +46 -0
- package/WebRTC.framework/Headers/RTCMediaSource.h +34 -0
- package/WebRTC.framework/Headers/RTCMediaStream.h +49 -0
- package/WebRTC.framework/Headers/RTCMediaStreamTrack.h +50 -0
- package/WebRTC.framework/Headers/RTCMetrics.h +23 -0
- package/WebRTC.framework/Headers/RTCMetricsSampleInfo.h +48 -0
- package/WebRTC.framework/Headers/RTCMutableI420Buffer.h +23 -0
- package/WebRTC.framework/Headers/RTCMutableYUVPlanarBuffer.h +28 -0
- package/WebRTC.framework/Headers/RTCNativeI420Buffer.h +23 -0
- package/WebRTC.framework/Headers/RTCNativeMutableI420Buffer.h +24 -0
- package/WebRTC.framework/Headers/RTCPeerConnection.h +397 -0
- package/WebRTC.framework/Headers/RTCPeerConnectionFactory.h +113 -0
- package/WebRTC.framework/Headers/RTCPeerConnectionFactoryOptions.h +38 -0
- package/WebRTC.framework/Headers/RTCRtcpParameters.h +30 -0
- package/WebRTC.framework/Headers/RTCRtpCodecParameters.h +73 -0
- package/WebRTC.framework/Headers/RTCRtpEncodingParameters.h +76 -0
- package/WebRTC.framework/Headers/RTCRtpHeaderExtension.h +33 -0
- package/WebRTC.framework/Headers/RTCRtpParameters.h +58 -0
- package/WebRTC.framework/Headers/RTCRtpReceiver.h +86 -0
- package/WebRTC.framework/Headers/RTCRtpSender.h +54 -0
- package/WebRTC.framework/Headers/RTCRtpTransceiver.h +137 -0
- package/WebRTC.framework/Headers/RTCSSLAdapter.h +20 -0
- package/WebRTC.framework/Headers/RTCSSLCertificateVerifier.h +25 -0
- package/WebRTC.framework/Headers/RTCSessionDescription.h +48 -0
- package/WebRTC.framework/Headers/RTCStatisticsReport.h +55 -0
- package/WebRTC.framework/Headers/RTCTracing.h +21 -0
- package/WebRTC.framework/Headers/RTCVideoCapturer.h +35 -0
- package/WebRTC.framework/Headers/RTCVideoCodecInfo.h +36 -0
- package/WebRTC.framework/Headers/RTCVideoDecoder.h +41 -0
- package/WebRTC.framework/Headers/RTCVideoDecoderAV1.h +25 -0
- package/WebRTC.framework/Headers/RTCVideoDecoderFactory.h +32 -0
- package/WebRTC.framework/Headers/RTCVideoDecoderFactoryH264.h +18 -0
- package/WebRTC.framework/Headers/RTCVideoDecoderH264.h +18 -0
- package/WebRTC.framework/Headers/RTCVideoDecoderVP8.h +25 -0
- package/WebRTC.framework/Headers/RTCVideoDecoderVP9.h +27 -0
- package/WebRTC.framework/Headers/RTCVideoEncoder.h +59 -0
- package/WebRTC.framework/Headers/RTCVideoEncoderAV1.h +27 -0
- package/WebRTC.framework/Headers/RTCVideoEncoderFactory.h +52 -0
- package/WebRTC.framework/Headers/RTCVideoEncoderFactoryH264.h +18 -0
- package/WebRTC.framework/Headers/RTCVideoEncoderH264.h +22 -0
- package/WebRTC.framework/Headers/RTCVideoEncoderQpThresholds.h +28 -0
- package/WebRTC.framework/Headers/RTCVideoEncoderSettings.h +42 -0
- package/WebRTC.framework/Headers/RTCVideoEncoderVP8.h +25 -0
- package/WebRTC.framework/Headers/RTCVideoEncoderVP9.h +27 -0
- package/WebRTC.framework/Headers/RTCVideoFrame.h +86 -0
- package/WebRTC.framework/Headers/RTCVideoFrameBuffer.h +40 -0
- package/WebRTC.framework/Headers/RTCVideoRenderer.h +43 -0
- package/WebRTC.framework/Headers/RTCVideoSource.h +37 -0
- package/WebRTC.framework/Headers/RTCVideoTrack.h +38 -0
- package/WebRTC.framework/Headers/RTCVideoViewShading.h +39 -0
- package/WebRTC.framework/Headers/RTCYUVPlanarBuffer.h +46 -0
- package/WebRTC.framework/Headers/WebRTC.h +90 -0
- package/WebRTC.framework/Modules/module.modulemap +6 -0
- package/WebRTC.framework/Resources/Info.plist +36 -0
- package/WebRTC.framework/Versions/A/Headers/RTCAudioSource.h +32 -0
- package/WebRTC.framework/Versions/A/Headers/RTCAudioTrack.h +28 -0
- package/WebRTC.framework/Versions/A/Headers/RTCCVPixelBuffer.h +52 -0
- package/WebRTC.framework/Versions/A/Headers/RTCCallbackLogger.h +41 -0
- package/WebRTC.framework/Versions/A/Headers/RTCCameraVideoCapturer.h +56 -0
- package/WebRTC.framework/Versions/A/Headers/RTCCertificate.h +44 -0
- package/WebRTC.framework/Versions/A/Headers/RTCCodecSpecificInfo.h +24 -0
- package/WebRTC.framework/Versions/A/Headers/RTCCodecSpecificInfoH264.h +27 -0
- package/WebRTC.framework/Versions/A/Headers/RTCConfiguration.h +262 -0
- package/WebRTC.framework/Versions/A/Headers/RTCCryptoOptions.h +63 -0
- package/WebRTC.framework/Versions/A/Headers/RTCDataChannel.h +132 -0
- package/WebRTC.framework/Versions/A/Headers/RTCDataChannelConfiguration.h +52 -0
- package/WebRTC.framework/Versions/A/Headers/RTCDefaultVideoDecoderFactory.h +26 -0
- package/WebRTC.framework/Versions/A/Headers/RTCDefaultVideoEncoderFactory.h +31 -0
- package/WebRTC.framework/Versions/A/Headers/RTCDispatcher.h +46 -0
- package/WebRTC.framework/Versions/A/Headers/RTCDtmfSender.h +71 -0
- package/WebRTC.framework/Versions/A/Headers/RTCEncodedImage.h +52 -0
- package/WebRTC.framework/Versions/A/Headers/RTCFieldTrials.h +30 -0
- package/WebRTC.framework/Versions/A/Headers/RTCFileLogger.h +74 -0
- package/WebRTC.framework/Versions/A/Headers/RTCFileVideoCapturer.h +51 -0
- package/WebRTC.framework/Versions/A/Headers/RTCH264ProfileLevelId.h +60 -0
- package/WebRTC.framework/Versions/A/Headers/RTCI420Buffer.h +22 -0
- package/WebRTC.framework/Versions/A/Headers/RTCIceCandidate.h +49 -0
- package/WebRTC.framework/Versions/A/Headers/RTCIceCandidateErrorEvent.h +42 -0
- package/WebRTC.framework/Versions/A/Headers/RTCIceServer.h +114 -0
- package/WebRTC.framework/Versions/A/Headers/RTCLegacyStatsReport.h +37 -0
- package/WebRTC.framework/Versions/A/Headers/RTCLogging.h +66 -0
- package/WebRTC.framework/Versions/A/Headers/RTCMTLNSVideoView.h +22 -0
- package/WebRTC.framework/Versions/A/Headers/RTCMacros.h +63 -0
- package/WebRTC.framework/Versions/A/Headers/RTCMediaConstraints.h +46 -0
- package/WebRTC.framework/Versions/A/Headers/RTCMediaSource.h +34 -0
- package/WebRTC.framework/Versions/A/Headers/RTCMediaStream.h +49 -0
- package/WebRTC.framework/Versions/A/Headers/RTCMediaStreamTrack.h +50 -0
- package/WebRTC.framework/Versions/A/Headers/RTCMetrics.h +23 -0
- package/WebRTC.framework/Versions/A/Headers/RTCMetricsSampleInfo.h +48 -0
- package/WebRTC.framework/Versions/A/Headers/RTCMutableI420Buffer.h +23 -0
- package/WebRTC.framework/Versions/A/Headers/RTCMutableYUVPlanarBuffer.h +28 -0
- package/WebRTC.framework/Versions/A/Headers/RTCNativeI420Buffer.h +23 -0
- package/WebRTC.framework/Versions/A/Headers/RTCNativeMutableI420Buffer.h +24 -0
- package/WebRTC.framework/Versions/A/Headers/RTCPeerConnection.h +397 -0
- package/WebRTC.framework/Versions/A/Headers/RTCPeerConnectionFactory.h +113 -0
- package/WebRTC.framework/Versions/A/Headers/RTCPeerConnectionFactoryOptions.h +38 -0
- package/WebRTC.framework/Versions/A/Headers/RTCRtcpParameters.h +30 -0
- package/WebRTC.framework/Versions/A/Headers/RTCRtpCodecParameters.h +73 -0
- package/WebRTC.framework/Versions/A/Headers/RTCRtpEncodingParameters.h +76 -0
- package/WebRTC.framework/Versions/A/Headers/RTCRtpHeaderExtension.h +33 -0
- package/WebRTC.framework/Versions/A/Headers/RTCRtpParameters.h +58 -0
- package/WebRTC.framework/Versions/A/Headers/RTCRtpReceiver.h +86 -0
- package/WebRTC.framework/Versions/A/Headers/RTCRtpSender.h +54 -0
- package/WebRTC.framework/Versions/A/Headers/RTCRtpTransceiver.h +137 -0
- package/WebRTC.framework/Versions/A/Headers/RTCSSLAdapter.h +20 -0
- package/WebRTC.framework/Versions/A/Headers/RTCSSLCertificateVerifier.h +25 -0
- package/WebRTC.framework/Versions/A/Headers/RTCSessionDescription.h +48 -0
- package/WebRTC.framework/Versions/A/Headers/RTCStatisticsReport.h +55 -0
- package/WebRTC.framework/Versions/A/Headers/RTCTracing.h +21 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoCapturer.h +35 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoCodecInfo.h +36 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoDecoder.h +41 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderAV1.h +25 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderFactory.h +32 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderFactoryH264.h +18 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderH264.h +18 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderVP8.h +25 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoDecoderVP9.h +27 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoder.h +59 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderAV1.h +27 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderFactory.h +52 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderFactoryH264.h +18 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderH264.h +22 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderQpThresholds.h +28 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderSettings.h +42 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderVP8.h +25 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoEncoderVP9.h +27 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoFrame.h +86 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoFrameBuffer.h +40 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoRenderer.h +43 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoSource.h +37 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoTrack.h +38 -0
- package/WebRTC.framework/Versions/A/Headers/RTCVideoViewShading.h +39 -0
- package/WebRTC.framework/Versions/A/Headers/RTCYUVPlanarBuffer.h +46 -0
- package/WebRTC.framework/Versions/A/Headers/WebRTC.h +90 -0
- package/WebRTC.framework/Versions/A/Modules/module.modulemap +6 -0
- package/WebRTC.framework/Versions/A/Resources/Info.plist +36 -0
- package/WebRTC.framework/Versions/A/WebRTC +0 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCAudioSource.h +32 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCAudioTrack.h +28 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCCVPixelBuffer.h +52 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCCallbackLogger.h +41 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCCameraVideoCapturer.h +56 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCCertificate.h +44 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCCodecSpecificInfo.h +24 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCCodecSpecificInfoH264.h +27 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCConfiguration.h +262 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCCryptoOptions.h +63 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCDataChannel.h +132 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCDataChannelConfiguration.h +52 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCDefaultVideoDecoderFactory.h +26 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCDefaultVideoEncoderFactory.h +31 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCDispatcher.h +46 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCDtmfSender.h +71 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCEncodedImage.h +52 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCFieldTrials.h +30 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCFileLogger.h +74 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCFileVideoCapturer.h +51 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCH264ProfileLevelId.h +60 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCI420Buffer.h +22 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCIceCandidate.h +49 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCIceCandidateErrorEvent.h +42 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCIceServer.h +114 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCLegacyStatsReport.h +37 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCLogging.h +66 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCMTLNSVideoView.h +22 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCMacros.h +63 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCMediaConstraints.h +46 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCMediaSource.h +34 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCMediaStream.h +49 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCMediaStreamTrack.h +50 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCMetrics.h +23 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCMetricsSampleInfo.h +48 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCMutableI420Buffer.h +23 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCMutableYUVPlanarBuffer.h +28 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCNativeI420Buffer.h +23 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCNativeMutableI420Buffer.h +24 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCPeerConnection.h +397 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCPeerConnectionFactory.h +113 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCPeerConnectionFactoryOptions.h +38 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCRtcpParameters.h +30 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCRtpCodecParameters.h +73 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCRtpEncodingParameters.h +76 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCRtpHeaderExtension.h +33 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCRtpParameters.h +58 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCRtpReceiver.h +86 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCRtpSender.h +54 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCRtpTransceiver.h +137 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCSSLAdapter.h +20 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCSSLCertificateVerifier.h +25 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCSessionDescription.h +48 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCStatisticsReport.h +55 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCTracing.h +21 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoCapturer.h +35 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoCodecInfo.h +36 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoDecoder.h +41 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoDecoderAV1.h +25 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoDecoderFactory.h +32 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoDecoderFactoryH264.h +18 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoDecoderH264.h +18 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoDecoderVP8.h +25 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoDecoderVP9.h +27 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoder.h +59 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderAV1.h +27 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderFactory.h +52 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderFactoryH264.h +18 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderH264.h +22 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderQpThresholds.h +28 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderSettings.h +42 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderVP8.h +25 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoEncoderVP9.h +27 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoFrame.h +86 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoFrameBuffer.h +40 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoRenderer.h +43 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoSource.h +37 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoTrack.h +38 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCVideoViewShading.h +39 -0
- package/WebRTC.framework/Versions/Current/Headers/RTCYUVPlanarBuffer.h +46 -0
- package/WebRTC.framework/Versions/Current/Headers/WebRTC.h +90 -0
- package/WebRTC.framework/Versions/Current/Modules/module.modulemap +6 -0
- package/WebRTC.framework/Versions/Current/Resources/Info.plist +36 -0
- package/WebRTC.framework/Versions/Current/WebRTC +0 -0
- package/WebRTC.framework/WebRTC +0 -0
- package/binding.gyp +16 -0
- package/desktop_sdk_macos.framework/Headers/desktop_sdk_macos-Swift.h +606 -0
- package/desktop_sdk_macos.framework/Headers/desktop_sdk_macos.h +18 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo +0 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/Project/x86_64-apple-macos.swiftsourceinfo +0 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.abi.json +7423 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.private.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftdoc +0 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftmodule +0 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.abi.json +7423 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.private.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftdoc +0 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftmodule +0 -0
- package/desktop_sdk_macos.framework/Modules/module.modulemap +11 -0
- package/desktop_sdk_macos.framework/Resources/Info.plist +46 -0
- package/desktop_sdk_macos.framework/Versions/A/Headers/desktop_sdk_macos-Swift.h +606 -0
- package/desktop_sdk_macos.framework/Versions/A/Headers/desktop_sdk_macos.h +18 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo +0 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/Project/x86_64-apple-macos.swiftsourceinfo +0 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.abi.json +7423 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.private.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftdoc +0 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftmodule +0 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.abi.json +7423 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.private.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftdoc +0 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftmodule +0 -0
- package/desktop_sdk_macos.framework/Versions/A/Modules/module.modulemap +11 -0
- package/desktop_sdk_macos.framework/Versions/A/Resources/Info.plist +46 -0
- package/desktop_sdk_macos.framework/Versions/A/desktop_sdk_macos +0 -0
- package/desktop_sdk_macos.framework/Versions/Current/Headers/desktop_sdk_macos-Swift.h +606 -0
- package/desktop_sdk_macos.framework/Versions/Current/Headers/desktop_sdk_macos.h +18 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo +0 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/Project/x86_64-apple-macos.swiftsourceinfo +0 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.abi.json +7423 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.private.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftdoc +0 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/arm64-apple-macos.swiftmodule +0 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.abi.json +7423 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.private.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftdoc +0 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftinterface +216 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/desktop_sdk_macos.swiftmodule/x86_64-apple-macos.swiftmodule +0 -0
- package/desktop_sdk_macos.framework/Versions/Current/Modules/module.modulemap +11 -0
- package/desktop_sdk_macos.framework/Versions/Current/Resources/Info.plist +46 -0
- package/desktop_sdk_macos.framework/Versions/Current/desktop_sdk_macos +0 -0
- package/desktop_sdk_macos.framework/desktop_sdk_macos +0 -0
- package/index.d.ts +9 -0
- package/index.js +14 -0
- package/package.json +9 -0
- package/src/RecallAiDesktopSdk.h +2 -0
- package/src/main.cc +47 -0
|
@@ -0,0 +1,216 @@
|
|
|
1
|
+
// swift-interface-format-version: 1.0
|
|
2
|
+
// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51)
|
|
3
|
+
// swift-module-flags: -target arm64-apple-macos13.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name desktop_sdk_macos
|
|
4
|
+
// swift-module-flags-ignorable: -enable-bare-slash-regex
|
|
5
|
+
import AVFAudio
|
|
6
|
+
import AVFoundation
|
|
7
|
+
import Accelerate
|
|
8
|
+
import ApplicationServices
|
|
9
|
+
import Carbon
|
|
10
|
+
import Cocoa
|
|
11
|
+
import CoreMedia
|
|
12
|
+
import Foundation
|
|
13
|
+
import ScreenCaptureKit
|
|
14
|
+
import Swift
|
|
15
|
+
import SystemExtensions
|
|
16
|
+
import VideoToolbox
|
|
17
|
+
import WebRTC
|
|
18
|
+
import _Concurrency
|
|
19
|
+
import _StringProcessing
|
|
20
|
+
@_exported import desktop_sdk_macos
|
|
21
|
+
import os
|
|
22
|
+
public struct RecallAiDesktopSdkConfig {
|
|
23
|
+
public init(apiUrl: Swift.String, apiKey: Swift.String, customUserId: Swift.String, recordingConfig: [Swift.String : Any])
|
|
24
|
+
public static func deserialize(json: Swift.String) throws -> desktop_sdk_macos.RecallAiDesktopSdkConfig
|
|
25
|
+
}
|
|
26
|
+
public protocol ScreenShareDelegate {
|
|
27
|
+
func handleScreenBuffer(sampleBuffer: CoreVideo.CVPixelBuffer, presTime: CoreMedia.CMTime)
|
|
28
|
+
}
|
|
29
|
+
public enum ScreenShareFrame {
|
|
30
|
+
case window(ApplicationServices.AXUIElement)
|
|
31
|
+
case frame(CoreFoundation.CGRect, [ApplicationServices.AXUIElement])
|
|
32
|
+
case screen
|
|
33
|
+
}
|
|
34
|
+
extension desktop_sdk_macos.ScreenShareFrame : Swift.Equatable {
|
|
35
|
+
public static func == (lhs: desktop_sdk_macos.ScreenShareFrame, rhs: desktop_sdk_macos.ScreenShareFrame) -> Swift.Bool
|
|
36
|
+
}
|
|
37
|
+
@objc public class ScreenShareRecorder : ObjectiveC.NSObject, ScreenCaptureKit.SCStreamOutput, ScreenCaptureKit.SCStreamDelegate {
|
|
38
|
+
public init(delegate: desktop_sdk_macos.ScreenShareDelegate)
|
|
39
|
+
public func start(frame: desktop_sdk_macos.ScreenShareFrame)
|
|
40
|
+
public func end()
|
|
41
|
+
@objc public func stream(_ stream: ScreenCaptureKit.SCStream, didOutputSampleBuffer sampleBuffer: CoreMedia.CMSampleBuffer, of outputType: ScreenCaptureKit.SCStreamOutputType)
|
|
42
|
+
@objc public func stream(_ stream: ScreenCaptureKit.SCStream, didStopWithError error: Swift.Error)
|
|
43
|
+
@objc deinit
|
|
44
|
+
}
|
|
45
|
+
@_hasMissingDesignatedInitializers public class PermissionsService {
|
|
46
|
+
public static func waitForPermissions()
|
|
47
|
+
@objc deinit
|
|
48
|
+
}
|
|
49
|
+
public protocol AudioDeviceAudioDelegate {
|
|
50
|
+
func handleDeviceAudioBuffer(sampleBuffer: AVFAudio.AVAudioPCMBuffer)
|
|
51
|
+
}
|
|
52
|
+
public struct Meeting : Swift.CustomDebugStringConvertible, Swift.Equatable {
|
|
53
|
+
public var title: Swift.String?
|
|
54
|
+
public var meetingId: Swift.String?
|
|
55
|
+
public var platform: Swift.String?
|
|
56
|
+
public var screenShareActive: Swift.Bool
|
|
57
|
+
public var activeSpeakerId: Swift.Int?
|
|
58
|
+
public var participants: [Swift.Int : desktop_sdk_macos.MeetingParticipant]
|
|
59
|
+
public var debugDescription: Swift.String {
|
|
60
|
+
get
|
|
61
|
+
}
|
|
62
|
+
public static func == (a: desktop_sdk_macos.Meeting, b: desktop_sdk_macos.Meeting) -> Swift.Bool
|
|
63
|
+
}
|
|
64
|
+
public struct MeetingParticipant : Swift.CustomDebugStringConvertible, Swift.Equatable {
|
|
65
|
+
public var id: Swift.Int
|
|
66
|
+
public var name: Swift.String
|
|
67
|
+
public var email: Swift.String?
|
|
68
|
+
public var videoOn: Swift.Bool
|
|
69
|
+
public var audioOn: Swift.Bool
|
|
70
|
+
public var debugDescription: Swift.String {
|
|
71
|
+
get
|
|
72
|
+
}
|
|
73
|
+
public static func == (a: desktop_sdk_macos.MeetingParticipant, b: desktop_sdk_macos.MeetingParticipant) -> Swift.Bool
|
|
74
|
+
}
|
|
75
|
+
@objc @_inheritsConvenienceInitializers public class RecallAiCameraExtensionDelegate : ObjectiveC.NSObject, SystemExtensions.OSSystemExtensionRequestDelegate {
|
|
76
|
+
@objc public func request(_ request: SystemExtensions.OSSystemExtensionRequest, actionForReplacingExtension existing: SystemExtensions.OSSystemExtensionProperties, withExtension ext: SystemExtensions.OSSystemExtensionProperties) -> SystemExtensions.OSSystemExtensionRequest.ReplacementAction
|
|
77
|
+
@objc public func requestNeedsUserApproval(_ request: SystemExtensions.OSSystemExtensionRequest)
|
|
78
|
+
@objc public func request(_ request: SystemExtensions.OSSystemExtensionRequest, didFinishWithResult result: SystemExtensions.OSSystemExtensionRequest.Result)
|
|
79
|
+
@objc public func request(_ request: SystemExtensions.OSSystemExtensionRequest, didFailWithError error: Swift.Error)
|
|
80
|
+
@objc override dynamic public init()
|
|
81
|
+
@objc deinit
|
|
82
|
+
}
|
|
83
|
+
public class RecallAiDesktopSdk {
|
|
84
|
+
public init(config: desktop_sdk_macos.RecallAiDesktopSdkConfig)
|
|
85
|
+
public func toggle(enabled: Swift.Bool)
|
|
86
|
+
public func installCameraExtension(extensionBundleIdentifier: Swift.String)
|
|
87
|
+
public func uninstallCameraExtension(extensionBundleIdentifier: Swift.String)
|
|
88
|
+
@objc deinit
|
|
89
|
+
}
|
|
90
|
+
public protocol MeetingAppMediaCapturerDelegate {
|
|
91
|
+
func handleVideoBuffer(frameId: Swift.Int, sampleBuffer: CoreVideo.CVPixelBuffer, presTime: CoreMedia.CMTime)
|
|
92
|
+
func handleSpeakerAudioBuffer(sampleBuffer: AVFAudio.AVAudioPCMBuffer)
|
|
93
|
+
}
|
|
94
|
+
@objc public class MeetingAppMediaCapturer : ObjectiveC.NSObject, ScreenCaptureKit.SCStreamOutput, ScreenCaptureKit.SCStreamDelegate {
|
|
95
|
+
public init(window: ApplicationServices.AXUIElement, delegate: desktop_sdk_macos.MeetingAppMediaCapturerDelegate)
|
|
96
|
+
public func updateWindow(window: ApplicationServices.AXUIElement)
|
|
97
|
+
public func setFramesOfInterest(framesOfInterest: [Swift.Int : CoreFoundation.CGRect])
|
|
98
|
+
public func start()
|
|
99
|
+
public func end()
|
|
100
|
+
@objc public func stream(_ stream: ScreenCaptureKit.SCStream, didOutputSampleBuffer sampleBuffer: CoreMedia.CMSampleBuffer, of outputType: ScreenCaptureKit.SCStreamOutputType)
|
|
101
|
+
@objc public func stream(_ stream: ScreenCaptureKit.SCStream, didStopWithError error: Swift.Error)
|
|
102
|
+
@objc deinit
|
|
103
|
+
}
|
|
104
|
+
@_cdecl("recallai_sdk_init")
|
|
105
|
+
public func RecallAiSdkInit(configJson: Swift.UnsafePointer<Swift.Int8>)
|
|
106
|
+
@_cdecl("recallai_sdk_toggle")
|
|
107
|
+
public func RecallAiSdkToggle(enabled: Swift.Bool)
|
|
108
|
+
public struct UiElementSelector {
|
|
109
|
+
public var title: Swift.String?
|
|
110
|
+
public var desc: Swift.String?
|
|
111
|
+
public var descContains: Swift.String?
|
|
112
|
+
public var label: Swift.String?
|
|
113
|
+
public var labelContains: Swift.String?
|
|
114
|
+
public var role: Swift.String?
|
|
115
|
+
public var roleDesc: Swift.String?
|
|
116
|
+
public var roleDescContains: Swift.String?
|
|
117
|
+
public var value: Swift.String?
|
|
118
|
+
public var valueContains: Swift.String?
|
|
119
|
+
public var maxElements: Swift.Int
|
|
120
|
+
public var depth: Swift.Int
|
|
121
|
+
}
|
|
122
|
+
@_hasMissingDesignatedInitializers public class UiScrapingService {
|
|
123
|
+
public func findElements(processName: Swift.String, selector: desktop_sdk_macos.UiElementSelector) -> [ApplicationServices.AXUIElement]
|
|
124
|
+
public func findElements(root: ApplicationServices.AXUIElement, selector: desktop_sdk_macos.UiElementSelector) -> [ApplicationServices.AXUIElement]
|
|
125
|
+
public func findElement(root: ApplicationServices.AXUIElement, selector: desktop_sdk_macos.UiElementSelector) -> ApplicationServices.AXUIElement?
|
|
126
|
+
public func dump(element: ApplicationServices.AXUIElement)
|
|
127
|
+
@objc deinit
|
|
128
|
+
}
|
|
129
|
+
public protocol ActiveSpeakerDetectorDelegate {
|
|
130
|
+
func handleActiveSpeakerChange(streamId: Swift.Int?)
|
|
131
|
+
}
|
|
132
|
+
extension ApplicationServices.AXUIElement {
|
|
133
|
+
public var title: Swift.String? {
|
|
134
|
+
get
|
|
135
|
+
}
|
|
136
|
+
public var desc: Swift.String? {
|
|
137
|
+
get
|
|
138
|
+
}
|
|
139
|
+
public var label: Swift.String? {
|
|
140
|
+
get
|
|
141
|
+
}
|
|
142
|
+
public var value: Swift.String? {
|
|
143
|
+
get
|
|
144
|
+
}
|
|
145
|
+
public var role: Swift.String? {
|
|
146
|
+
get
|
|
147
|
+
}
|
|
148
|
+
public var roleDesc: Swift.String? {
|
|
149
|
+
get
|
|
150
|
+
}
|
|
151
|
+
public var application: ApplicationServices.AXUIElement {
|
|
152
|
+
get
|
|
153
|
+
}
|
|
154
|
+
public var pid: Darwin.pid_t {
|
|
155
|
+
get
|
|
156
|
+
}
|
|
157
|
+
public var children: [ApplicationServices.AXUIElement]? {
|
|
158
|
+
get
|
|
159
|
+
}
|
|
160
|
+
public var position: CoreFoundation.CGPoint? {
|
|
161
|
+
get
|
|
162
|
+
}
|
|
163
|
+
public var size: CoreFoundation.CGSize? {
|
|
164
|
+
get
|
|
165
|
+
}
|
|
166
|
+
public var frame: CoreFoundation.CGRect? {
|
|
167
|
+
get
|
|
168
|
+
}
|
|
169
|
+
public func getAttribute<T>(attribute: Swift.String) -> T?
|
|
170
|
+
public func getFrameRelativeTo(root: ApplicationServices.AXUIElement) -> CoreFoundation.CGRect?
|
|
171
|
+
public func getCGWindowId() -> CoreGraphics.CGWindowID?
|
|
172
|
+
public func click()
|
|
173
|
+
}
|
|
174
|
+
public class ZoomRecorder {
|
|
175
|
+
public init(config: desktop_sdk_macos.RecallAiDesktopSdkConfig, uiScrapingService: desktop_sdk_macos.UiScrapingService)
|
|
176
|
+
public func start()
|
|
177
|
+
public func stop()
|
|
178
|
+
@objc deinit
|
|
179
|
+
}
|
|
180
|
+
extension Foundation.Date {
|
|
181
|
+
public var currentTimestampMillis: Swift.Int64 {
|
|
182
|
+
get
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
public class ZoomMeetingRecorder : desktop_sdk_macos.MeetingAppMediaCapturerDelegate, desktop_sdk_macos.AudioDeviceAudioDelegate, desktop_sdk_macos.ActiveSpeakerDetectorDelegate, desktop_sdk_macos.ScreenShareDelegate {
|
|
186
|
+
public init(config: desktop_sdk_macos.RecallAiDesktopSdkConfig, uiScrapingService: desktop_sdk_macos.UiScrapingService, windows: [ApplicationServices.AXUIElement])
|
|
187
|
+
public func start()
|
|
188
|
+
public func updateMainWindows(windows: [ApplicationServices.AXUIElement])
|
|
189
|
+
public func end()
|
|
190
|
+
public func handleVideoBuffer(frameId: Swift.Int, sampleBuffer: CoreVideo.CVPixelBuffer, presTime: CoreMedia.CMTime)
|
|
191
|
+
public func handleScreenBuffer(sampleBuffer: CoreVideo.CVPixelBuffer, presTime: CoreMedia.CMTime)
|
|
192
|
+
public func handleDeviceAudioBuffer(sampleBuffer: AVFAudio.AVAudioPCMBuffer)
|
|
193
|
+
public func handleSpeakerAudioBuffer(sampleBuffer: AVFAudio.AVAudioPCMBuffer)
|
|
194
|
+
public func handleActiveSpeakerChange(streamId: Swift.Int?)
|
|
195
|
+
@objc deinit
|
|
196
|
+
}
|
|
197
|
+
public class MeetingRecorder {
|
|
198
|
+
public init(config: desktop_sdk_macos.RecallAiDesktopSdkConfig)
|
|
199
|
+
public func start(title: Swift.String, meetingId: Swift.String?, platform: Swift.String)
|
|
200
|
+
public func getMeeting() -> desktop_sdk_macos.Meeting
|
|
201
|
+
public func getIdForString(group: Swift.String, str: Swift.String) -> Swift.Int
|
|
202
|
+
public func getCounter(key: Swift.String) -> Swift.Int
|
|
203
|
+
public func participantJoined(participant: desktop_sdk_macos.MeetingParticipant)
|
|
204
|
+
public func participantUpdated(participant: desktop_sdk_macos.MeetingParticipant)
|
|
205
|
+
public func syncParticipant(participant: desktop_sdk_macos.MeetingParticipant)
|
|
206
|
+
public func syncParticipants(participants: [desktop_sdk_macos.MeetingParticipant])
|
|
207
|
+
public func participantLeft(participantId: Swift.Int)
|
|
208
|
+
public func screenShareStarted()
|
|
209
|
+
public func screenShareStopped()
|
|
210
|
+
public func handleActiveSpeakerChange(participantId: Swift.Int?)
|
|
211
|
+
public func handleVideoBuffer(participantId: Swift.Int, buffer: CoreVideo.CVPixelBuffer, presTime: CoreMedia.CMTime)
|
|
212
|
+
public func handleScreenBuffer(buffer: CoreVideo.CVPixelBuffer, presTime: CoreMedia.CMTime)
|
|
213
|
+
public func handleAudioBuffer(streamId: Swift.Int, buffer: AVFAudio.AVAudioPCMBuffer)
|
|
214
|
+
public func end()
|
|
215
|
+
@objc deinit
|
|
216
|
+
}
|
|
Binary file
|
|
@@ -0,0 +1,216 @@
|
|
|
1
|
+
// swift-interface-format-version: 1.0
|
|
2
|
+
// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51)
|
|
3
|
+
// swift-module-flags: -target arm64-apple-macos13.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name desktop_sdk_macos
|
|
4
|
+
// swift-module-flags-ignorable: -enable-bare-slash-regex
|
|
5
|
+
import AVFAudio
|
|
6
|
+
import AVFoundation
|
|
7
|
+
import Accelerate
|
|
8
|
+
import ApplicationServices
|
|
9
|
+
import Carbon
|
|
10
|
+
import Cocoa
|
|
11
|
+
import CoreMedia
|
|
12
|
+
import Foundation
|
|
13
|
+
import ScreenCaptureKit
|
|
14
|
+
import Swift
|
|
15
|
+
import SystemExtensions
|
|
16
|
+
import VideoToolbox
|
|
17
|
+
import WebRTC
|
|
18
|
+
import _Concurrency
|
|
19
|
+
import _StringProcessing
|
|
20
|
+
@_exported import desktop_sdk_macos
|
|
21
|
+
import os
|
|
22
|
+
public struct RecallAiDesktopSdkConfig {
|
|
23
|
+
public init(apiUrl: Swift.String, apiKey: Swift.String, customUserId: Swift.String, recordingConfig: [Swift.String : Any])
|
|
24
|
+
public static func deserialize(json: Swift.String) throws -> desktop_sdk_macos.RecallAiDesktopSdkConfig
|
|
25
|
+
}
|
|
26
|
+
public protocol ScreenShareDelegate {
|
|
27
|
+
func handleScreenBuffer(sampleBuffer: CoreVideo.CVPixelBuffer, presTime: CoreMedia.CMTime)
|
|
28
|
+
}
|
|
29
|
+
public enum ScreenShareFrame {
|
|
30
|
+
case window(ApplicationServices.AXUIElement)
|
|
31
|
+
case frame(CoreFoundation.CGRect, [ApplicationServices.AXUIElement])
|
|
32
|
+
case screen
|
|
33
|
+
}
|
|
34
|
+
extension desktop_sdk_macos.ScreenShareFrame : Swift.Equatable {
|
|
35
|
+
public static func == (lhs: desktop_sdk_macos.ScreenShareFrame, rhs: desktop_sdk_macos.ScreenShareFrame) -> Swift.Bool
|
|
36
|
+
}
|
|
37
|
+
@objc public class ScreenShareRecorder : ObjectiveC.NSObject, ScreenCaptureKit.SCStreamOutput, ScreenCaptureKit.SCStreamDelegate {
|
|
38
|
+
public init(delegate: desktop_sdk_macos.ScreenShareDelegate)
|
|
39
|
+
public func start(frame: desktop_sdk_macos.ScreenShareFrame)
|
|
40
|
+
public func end()
|
|
41
|
+
@objc public func stream(_ stream: ScreenCaptureKit.SCStream, didOutputSampleBuffer sampleBuffer: CoreMedia.CMSampleBuffer, of outputType: ScreenCaptureKit.SCStreamOutputType)
|
|
42
|
+
@objc public func stream(_ stream: ScreenCaptureKit.SCStream, didStopWithError error: Swift.Error)
|
|
43
|
+
@objc deinit
|
|
44
|
+
}
|
|
45
|
+
@_hasMissingDesignatedInitializers public class PermissionsService {
|
|
46
|
+
public static func waitForPermissions()
|
|
47
|
+
@objc deinit
|
|
48
|
+
}
|
|
49
|
+
public protocol AudioDeviceAudioDelegate {
|
|
50
|
+
func handleDeviceAudioBuffer(sampleBuffer: AVFAudio.AVAudioPCMBuffer)
|
|
51
|
+
}
|
|
52
|
+
public struct Meeting : Swift.CustomDebugStringConvertible, Swift.Equatable {
|
|
53
|
+
public var title: Swift.String?
|
|
54
|
+
public var meetingId: Swift.String?
|
|
55
|
+
public var platform: Swift.String?
|
|
56
|
+
public var screenShareActive: Swift.Bool
|
|
57
|
+
public var activeSpeakerId: Swift.Int?
|
|
58
|
+
public var participants: [Swift.Int : desktop_sdk_macos.MeetingParticipant]
|
|
59
|
+
public var debugDescription: Swift.String {
|
|
60
|
+
get
|
|
61
|
+
}
|
|
62
|
+
public static func == (a: desktop_sdk_macos.Meeting, b: desktop_sdk_macos.Meeting) -> Swift.Bool
|
|
63
|
+
}
|
|
64
|
+
public struct MeetingParticipant : Swift.CustomDebugStringConvertible, Swift.Equatable {
|
|
65
|
+
public var id: Swift.Int
|
|
66
|
+
public var name: Swift.String
|
|
67
|
+
public var email: Swift.String?
|
|
68
|
+
public var videoOn: Swift.Bool
|
|
69
|
+
public var audioOn: Swift.Bool
|
|
70
|
+
public var debugDescription: Swift.String {
|
|
71
|
+
get
|
|
72
|
+
}
|
|
73
|
+
public static func == (a: desktop_sdk_macos.MeetingParticipant, b: desktop_sdk_macos.MeetingParticipant) -> Swift.Bool
|
|
74
|
+
}
|
|
75
|
+
@objc @_inheritsConvenienceInitializers public class RecallAiCameraExtensionDelegate : ObjectiveC.NSObject, SystemExtensions.OSSystemExtensionRequestDelegate {
|
|
76
|
+
@objc public func request(_ request: SystemExtensions.OSSystemExtensionRequest, actionForReplacingExtension existing: SystemExtensions.OSSystemExtensionProperties, withExtension ext: SystemExtensions.OSSystemExtensionProperties) -> SystemExtensions.OSSystemExtensionRequest.ReplacementAction
|
|
77
|
+
@objc public func requestNeedsUserApproval(_ request: SystemExtensions.OSSystemExtensionRequest)
|
|
78
|
+
@objc public func request(_ request: SystemExtensions.OSSystemExtensionRequest, didFinishWithResult result: SystemExtensions.OSSystemExtensionRequest.Result)
|
|
79
|
+
@objc public func request(_ request: SystemExtensions.OSSystemExtensionRequest, didFailWithError error: Swift.Error)
|
|
80
|
+
@objc override dynamic public init()
|
|
81
|
+
@objc deinit
|
|
82
|
+
}
|
|
83
|
+
public class RecallAiDesktopSdk {
|
|
84
|
+
public init(config: desktop_sdk_macos.RecallAiDesktopSdkConfig)
|
|
85
|
+
public func toggle(enabled: Swift.Bool)
|
|
86
|
+
public func installCameraExtension(extensionBundleIdentifier: Swift.String)
|
|
87
|
+
public func uninstallCameraExtension(extensionBundleIdentifier: Swift.String)
|
|
88
|
+
@objc deinit
|
|
89
|
+
}
|
|
90
|
+
public protocol MeetingAppMediaCapturerDelegate {
|
|
91
|
+
func handleVideoBuffer(frameId: Swift.Int, sampleBuffer: CoreVideo.CVPixelBuffer, presTime: CoreMedia.CMTime)
|
|
92
|
+
func handleSpeakerAudioBuffer(sampleBuffer: AVFAudio.AVAudioPCMBuffer)
|
|
93
|
+
}
|
|
94
|
+
@objc public class MeetingAppMediaCapturer : ObjectiveC.NSObject, ScreenCaptureKit.SCStreamOutput, ScreenCaptureKit.SCStreamDelegate {
|
|
95
|
+
public init(window: ApplicationServices.AXUIElement, delegate: desktop_sdk_macos.MeetingAppMediaCapturerDelegate)
|
|
96
|
+
public func updateWindow(window: ApplicationServices.AXUIElement)
|
|
97
|
+
public func setFramesOfInterest(framesOfInterest: [Swift.Int : CoreFoundation.CGRect])
|
|
98
|
+
public func start()
|
|
99
|
+
public func end()
|
|
100
|
+
@objc public func stream(_ stream: ScreenCaptureKit.SCStream, didOutputSampleBuffer sampleBuffer: CoreMedia.CMSampleBuffer, of outputType: ScreenCaptureKit.SCStreamOutputType)
|
|
101
|
+
@objc public func stream(_ stream: ScreenCaptureKit.SCStream, didStopWithError error: Swift.Error)
|
|
102
|
+
@objc deinit
|
|
103
|
+
}
|
|
104
|
+
@_cdecl("recallai_sdk_init")
|
|
105
|
+
public func RecallAiSdkInit(configJson: Swift.UnsafePointer<Swift.Int8>)
|
|
106
|
+
@_cdecl("recallai_sdk_toggle")
|
|
107
|
+
public func RecallAiSdkToggle(enabled: Swift.Bool)
|
|
108
|
+
public struct UiElementSelector {
|
|
109
|
+
public var title: Swift.String?
|
|
110
|
+
public var desc: Swift.String?
|
|
111
|
+
public var descContains: Swift.String?
|
|
112
|
+
public var label: Swift.String?
|
|
113
|
+
public var labelContains: Swift.String?
|
|
114
|
+
public var role: Swift.String?
|
|
115
|
+
public var roleDesc: Swift.String?
|
|
116
|
+
public var roleDescContains: Swift.String?
|
|
117
|
+
public var value: Swift.String?
|
|
118
|
+
public var valueContains: Swift.String?
|
|
119
|
+
public var maxElements: Swift.Int
|
|
120
|
+
public var depth: Swift.Int
|
|
121
|
+
}
|
|
122
|
+
@_hasMissingDesignatedInitializers public class UiScrapingService {
|
|
123
|
+
public func findElements(processName: Swift.String, selector: desktop_sdk_macos.UiElementSelector) -> [ApplicationServices.AXUIElement]
|
|
124
|
+
public func findElements(root: ApplicationServices.AXUIElement, selector: desktop_sdk_macos.UiElementSelector) -> [ApplicationServices.AXUIElement]
|
|
125
|
+
public func findElement(root: ApplicationServices.AXUIElement, selector: desktop_sdk_macos.UiElementSelector) -> ApplicationServices.AXUIElement?
|
|
126
|
+
public func dump(element: ApplicationServices.AXUIElement)
|
|
127
|
+
@objc deinit
|
|
128
|
+
}
|
|
129
|
+
public protocol ActiveSpeakerDetectorDelegate {
|
|
130
|
+
func handleActiveSpeakerChange(streamId: Swift.Int?)
|
|
131
|
+
}
|
|
132
|
+
extension ApplicationServices.AXUIElement {
|
|
133
|
+
public var title: Swift.String? {
|
|
134
|
+
get
|
|
135
|
+
}
|
|
136
|
+
public var desc: Swift.String? {
|
|
137
|
+
get
|
|
138
|
+
}
|
|
139
|
+
public var label: Swift.String? {
|
|
140
|
+
get
|
|
141
|
+
}
|
|
142
|
+
public var value: Swift.String? {
|
|
143
|
+
get
|
|
144
|
+
}
|
|
145
|
+
public var role: Swift.String? {
|
|
146
|
+
get
|
|
147
|
+
}
|
|
148
|
+
public var roleDesc: Swift.String? {
|
|
149
|
+
get
|
|
150
|
+
}
|
|
151
|
+
public var application: ApplicationServices.AXUIElement {
|
|
152
|
+
get
|
|
153
|
+
}
|
|
154
|
+
public var pid: Darwin.pid_t {
|
|
155
|
+
get
|
|
156
|
+
}
|
|
157
|
+
public var children: [ApplicationServices.AXUIElement]? {
|
|
158
|
+
get
|
|
159
|
+
}
|
|
160
|
+
public var position: CoreFoundation.CGPoint? {
|
|
161
|
+
get
|
|
162
|
+
}
|
|
163
|
+
public var size: CoreFoundation.CGSize? {
|
|
164
|
+
get
|
|
165
|
+
}
|
|
166
|
+
public var frame: CoreFoundation.CGRect? {
|
|
167
|
+
get
|
|
168
|
+
}
|
|
169
|
+
public func getAttribute<T>(attribute: Swift.String) -> T?
|
|
170
|
+
public func getFrameRelativeTo(root: ApplicationServices.AXUIElement) -> CoreFoundation.CGRect?
|
|
171
|
+
public func getCGWindowId() -> CoreGraphics.CGWindowID?
|
|
172
|
+
public func click()
|
|
173
|
+
}
|
|
174
|
+
public class ZoomRecorder {
|
|
175
|
+
public init(config: desktop_sdk_macos.RecallAiDesktopSdkConfig, uiScrapingService: desktop_sdk_macos.UiScrapingService)
|
|
176
|
+
public func start()
|
|
177
|
+
public func stop()
|
|
178
|
+
@objc deinit
|
|
179
|
+
}
|
|
180
|
+
extension Foundation.Date {
|
|
181
|
+
public var currentTimestampMillis: Swift.Int64 {
|
|
182
|
+
get
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
public class ZoomMeetingRecorder : desktop_sdk_macos.MeetingAppMediaCapturerDelegate, desktop_sdk_macos.AudioDeviceAudioDelegate, desktop_sdk_macos.ActiveSpeakerDetectorDelegate, desktop_sdk_macos.ScreenShareDelegate {
|
|
186
|
+
public init(config: desktop_sdk_macos.RecallAiDesktopSdkConfig, uiScrapingService: desktop_sdk_macos.UiScrapingService, windows: [ApplicationServices.AXUIElement])
|
|
187
|
+
public func start()
|
|
188
|
+
public func updateMainWindows(windows: [ApplicationServices.AXUIElement])
|
|
189
|
+
public func end()
|
|
190
|
+
public func handleVideoBuffer(frameId: Swift.Int, sampleBuffer: CoreVideo.CVPixelBuffer, presTime: CoreMedia.CMTime)
|
|
191
|
+
public func handleScreenBuffer(sampleBuffer: CoreVideo.CVPixelBuffer, presTime: CoreMedia.CMTime)
|
|
192
|
+
public func handleDeviceAudioBuffer(sampleBuffer: AVFAudio.AVAudioPCMBuffer)
|
|
193
|
+
public func handleSpeakerAudioBuffer(sampleBuffer: AVFAudio.AVAudioPCMBuffer)
|
|
194
|
+
public func handleActiveSpeakerChange(streamId: Swift.Int?)
|
|
195
|
+
@objc deinit
|
|
196
|
+
}
|
|
197
|
+
public class MeetingRecorder {
|
|
198
|
+
public init(config: desktop_sdk_macos.RecallAiDesktopSdkConfig)
|
|
199
|
+
public func start(title: Swift.String, meetingId: Swift.String?, platform: Swift.String)
|
|
200
|
+
public func getMeeting() -> desktop_sdk_macos.Meeting
|
|
201
|
+
public func getIdForString(group: Swift.String, str: Swift.String) -> Swift.Int
|
|
202
|
+
public func getCounter(key: Swift.String) -> Swift.Int
|
|
203
|
+
public func participantJoined(participant: desktop_sdk_macos.MeetingParticipant)
|
|
204
|
+
public func participantUpdated(participant: desktop_sdk_macos.MeetingParticipant)
|
|
205
|
+
public func syncParticipant(participant: desktop_sdk_macos.MeetingParticipant)
|
|
206
|
+
public func syncParticipants(participants: [desktop_sdk_macos.MeetingParticipant])
|
|
207
|
+
public func participantLeft(participantId: Swift.Int)
|
|
208
|
+
public func screenShareStarted()
|
|
209
|
+
public func screenShareStopped()
|
|
210
|
+
public func handleActiveSpeakerChange(participantId: Swift.Int?)
|
|
211
|
+
public func handleVideoBuffer(participantId: Swift.Int, buffer: CoreVideo.CVPixelBuffer, presTime: CoreMedia.CMTime)
|
|
212
|
+
public func handleScreenBuffer(buffer: CoreVideo.CVPixelBuffer, presTime: CoreMedia.CMTime)
|
|
213
|
+
public func handleAudioBuffer(streamId: Swift.Int, buffer: AVFAudio.AVAudioPCMBuffer)
|
|
214
|
+
public func end()
|
|
215
|
+
@objc deinit
|
|
216
|
+
}
|