agora-electron-sdk 0.0.0-dev.1

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.
Files changed (369) hide show
  1. package/CHANGELOG.md +315 -0
  2. package/LICENSE +21 -0
  3. package/README.md +143 -0
  4. package/gulpfile.js +52 -0
  5. package/js/AgoraSdk.js +64 -0
  6. package/js/Decoder/gpu-utils.js +74 -0
  7. package/js/Decoder/index.js +172 -0
  8. package/js/Private/AgoraBase.js +3985 -0
  9. package/js/Private/AgoraMediaBase.js +1014 -0
  10. package/js/Private/AgoraMediaPlayerTypes.js +316 -0
  11. package/js/Private/IAgoraH265Transcoder.js +36 -0
  12. package/js/Private/IAgoraLog.js +78 -0
  13. package/js/Private/IAgoraMediaEngine.js +32 -0
  14. package/js/Private/IAgoraMediaPlayer.js +16 -0
  15. package/js/Private/IAgoraMediaPlayerSource.js +3 -0
  16. package/js/Private/IAgoraMediaRecorder.js +10 -0
  17. package/js/Private/IAgoraMediaStreamingSource.js +74 -0
  18. package/js/Private/IAgoraMusicContentCenter.js +157 -0
  19. package/js/Private/IAgoraRhythmPlayer.js +62 -0
  20. package/js/Private/IAgoraRtcEngine.js +982 -0
  21. package/js/Private/IAgoraRtcEngineEx.js +19 -0
  22. package/js/Private/IAgoraSpatialAudio.js +24 -0
  23. package/js/Private/IAudioDeviceManager.js +20 -0
  24. package/js/Private/extension/AgoraBaseExtension.js +3 -0
  25. package/js/Private/extension/AgoraMediaBaseExtension.js +2 -0
  26. package/js/Private/extension/AgoraMediaPlayerTypesExtension.js +2 -0
  27. package/js/Private/extension/IAgoraH265TranscoderExtension.js +2 -0
  28. package/js/Private/extension/IAgoraLogExtension.js +2 -0
  29. package/js/Private/extension/IAgoraMediaEngineExtension.js +2 -0
  30. package/js/Private/extension/IAgoraMediaPlayerExtension.js +2 -0
  31. package/js/Private/extension/IAgoraMediaPlayerSourceExtension.js +2 -0
  32. package/js/Private/extension/IAgoraMediaRecorderExtension.js +2 -0
  33. package/js/Private/extension/IAgoraMusicContentCenterExtension.js +2 -0
  34. package/js/Private/extension/IAgoraRhythmPlayerExtension.js +2 -0
  35. package/js/Private/extension/IAgoraRtcEngineExExtension.js +2 -0
  36. package/js/Private/extension/IAgoraRtcEngineExtension.js +2 -0
  37. package/js/Private/extension/IAgoraSpatialAudioExtension.js +2 -0
  38. package/js/Private/extension/IAudioDeviceManagerExtension.js +2 -0
  39. package/js/Private/impl/AgoraBaseImpl.js +23 -0
  40. package/js/Private/impl/AgoraMediaBaseImpl.js +149 -0
  41. package/js/Private/impl/IAgoraH265TranscoderImpl.js +116 -0
  42. package/js/Private/impl/IAgoraMediaEngineImpl.js +337 -0
  43. package/js/Private/impl/IAgoraMediaPlayerImpl.js +950 -0
  44. package/js/Private/impl/IAgoraMediaPlayerSourceImpl.js +73 -0
  45. package/js/Private/impl/IAgoraMediaRecorderImpl.js +47 -0
  46. package/js/Private/impl/IAgoraMusicContentCenterImpl.js +422 -0
  47. package/js/Private/impl/IAgoraRtcEngineExImpl.js +1042 -0
  48. package/js/Private/impl/IAgoraRtcEngineImpl.js +5167 -0
  49. package/js/Private/impl/IAgoraSpatialAudioImpl.js +358 -0
  50. package/js/Private/impl/IAudioDeviceManagerImpl.js +375 -0
  51. package/js/Private/internal/AgoraH265TranscoderInternal.js +62 -0
  52. package/js/Private/internal/AgoraMediaBaseInternal.js +15 -0
  53. package/js/Private/internal/AudioDeviceManagerInternal.js +44 -0
  54. package/js/Private/internal/IrisApiEngine.js +424 -0
  55. package/js/Private/internal/LocalSpatialAudioEngineInternal.js +7 -0
  56. package/js/Private/internal/MediaEngineInternal.js +122 -0
  57. package/js/Private/internal/MediaPlayerInternal.js +194 -0
  58. package/js/Private/internal/MediaRecorderInternal.js +70 -0
  59. package/js/Private/internal/MusicContentCenterInternal.js +139 -0
  60. package/js/Private/internal/RtcEngineExInternal.js +430 -0
  61. package/js/Private/ipc/main.js +21 -0
  62. package/js/Private/ipc/renderer.js +21 -0
  63. package/js/Private/ti/AgoraBase-ti.js +40 -0
  64. package/js/Private/ti/AgoraMediaBase-ti.js +75 -0
  65. package/js/Private/ti/AgoraMediaPlayerTypes-ti.js +5 -0
  66. package/js/Private/ti/IAgoraH265Transcoder-ti.js +40 -0
  67. package/js/Private/ti/IAgoraLog-ti.js +5 -0
  68. package/js/Private/ti/IAgoraMediaEngine-ti.js +5 -0
  69. package/js/Private/ti/IAgoraMediaPlayer-ti.js +38 -0
  70. package/js/Private/ti/IAgoraMediaPlayerSource-ti.js +50 -0
  71. package/js/Private/ti/IAgoraMediaRecorder-ti.js +5 -0
  72. package/js/Private/ti/IAgoraMediaStreamingSource-ti.js +5 -0
  73. package/js/Private/ti/IAgoraMusicContentCenter-ti.js +42 -0
  74. package/js/Private/ti/IAgoraRhythmPlayer-ti.js +5 -0
  75. package/js/Private/ti/IAgoraRtcEngine-ti.js +141 -0
  76. package/js/Private/ti/IAgoraRtcEngineEx-ti.js +5 -0
  77. package/js/Private/ti/IAgoraSpatialAudio-ti.js +5 -0
  78. package/js/Private/ti/IAudioDeviceManager-ti.js +5 -0
  79. package/js/Renderer/AgoraView.js +161 -0
  80. package/js/Renderer/CapabilityManager.js +99 -0
  81. package/js/Renderer/IRenderer.js +136 -0
  82. package/js/Renderer/IRendererCache.js +75 -0
  83. package/js/Renderer/RendererCache.js +100 -0
  84. package/js/Renderer/RendererManager.js +301 -0
  85. package/js/Renderer/WebCodecsRenderer/index.js +109 -0
  86. package/js/Renderer/WebCodecsRendererCache.js +115 -0
  87. package/js/Renderer/WebGLRenderer/index.js +314 -0
  88. package/js/Renderer/WebGLRenderer/webgl-utils.js +1337 -0
  89. package/js/Renderer/YUVCanvasRenderer/index.js +46 -0
  90. package/js/Renderer/index.js +17 -0
  91. package/js/Types.js +67 -0
  92. package/js/Utils.js +187 -0
  93. package/package.json +167 -0
  94. package/scripts/bootstrap.js +29 -0
  95. package/scripts/build.js +37 -0
  96. package/scripts/buildJS.js +14 -0
  97. package/scripts/checkElectron.js +43 -0
  98. package/scripts/clean.js +16 -0
  99. package/scripts/download.js +105 -0
  100. package/scripts/downloadPrebuild.js +199 -0
  101. package/scripts/getConfig.js +73 -0
  102. package/scripts/logger.js +32 -0
  103. package/scripts/synclib.js +69 -0
  104. package/scripts/util.js +47 -0
  105. package/scripts/zipBuild.js +40 -0
  106. package/ts/AgoraSdk.ts +54 -0
  107. package/ts/Decoder/gpu-utils.ts +92 -0
  108. package/ts/Decoder/index.ts +206 -0
  109. package/ts/Private/AgoraBase.ts +5511 -0
  110. package/ts/Private/AgoraMediaBase.ts +1764 -0
  111. package/ts/Private/AgoraMediaPlayerTypes.ts +464 -0
  112. package/ts/Private/IAgoraH265Transcoder.ts +73 -0
  113. package/ts/Private/IAgoraLog.ts +91 -0
  114. package/ts/Private/IAgoraMediaEngine.ts +316 -0
  115. package/ts/Private/IAgoraMediaPlayer.ts +744 -0
  116. package/ts/Private/IAgoraMediaPlayerSource.ts +137 -0
  117. package/ts/Private/IAgoraMediaRecorder.ts +25 -0
  118. package/ts/Private/IAgoraMediaStreamingSource.ts +81 -0
  119. package/ts/Private/IAgoraMusicContentCenter.ts +455 -0
  120. package/ts/Private/IAgoraRhythmPlayer.ts +67 -0
  121. package/ts/Private/IAgoraRtcEngine.ts +7306 -0
  122. package/ts/Private/IAgoraRtcEngineEx.ts +992 -0
  123. package/ts/Private/IAgoraSpatialAudio.ts +250 -0
  124. package/ts/Private/IAudioDeviceManager.ts +342 -0
  125. package/ts/Private/extension/AgoraBaseExtension.ts +14 -0
  126. package/ts/Private/extension/AgoraMediaBaseExtension.ts +1 -0
  127. package/ts/Private/extension/AgoraMediaPlayerTypesExtension.ts +1 -0
  128. package/ts/Private/extension/IAgoraH265TranscoderExtension.ts +39 -0
  129. package/ts/Private/extension/IAgoraLogExtension.ts +1 -0
  130. package/ts/Private/extension/IAgoraMediaEngineExtension.ts +62 -0
  131. package/ts/Private/extension/IAgoraMediaPlayerExtension.ts +64 -0
  132. package/ts/Private/extension/IAgoraMediaPlayerSourceExtension.ts +1 -0
  133. package/ts/Private/extension/IAgoraMediaRecorderExtension.ts +59 -0
  134. package/ts/Private/extension/IAgoraMusicContentCenterExtension.ts +34 -0
  135. package/ts/Private/extension/IAgoraRhythmPlayerExtension.ts +1 -0
  136. package/ts/Private/extension/IAgoraRtcEngineExExtension.ts +1 -0
  137. package/ts/Private/extension/IAgoraRtcEngineExtension.ts +64 -0
  138. package/ts/Private/extension/IAgoraSpatialAudioExtension.ts +1 -0
  139. package/ts/Private/extension/IAudioDeviceManagerExtension.ts +1 -0
  140. package/ts/Private/impl/AgoraBaseImpl.ts +39 -0
  141. package/ts/Private/impl/AgoraMediaBaseImpl.ts +237 -0
  142. package/ts/Private/impl/IAgoraH265TranscoderImpl.ts +152 -0
  143. package/ts/Private/impl/IAgoraMediaEngineImpl.ts +491 -0
  144. package/ts/Private/impl/IAgoraMediaPlayerImpl.ts +1169 -0
  145. package/ts/Private/impl/IAgoraMediaPlayerSourceImpl.ts +94 -0
  146. package/ts/Private/impl/IAgoraMediaRecorderImpl.ts +59 -0
  147. package/ts/Private/impl/IAgoraMusicContentCenterImpl.ts +562 -0
  148. package/ts/Private/impl/IAgoraRtcEngineExImpl.ts +1672 -0
  149. package/ts/Private/impl/IAgoraRtcEngineImpl.ts +7352 -0
  150. package/ts/Private/impl/IAgoraSpatialAudioImpl.ts +495 -0
  151. package/ts/Private/impl/IAudioDeviceManagerImpl.ts +443 -0
  152. package/ts/Private/internal/AgoraH265TranscoderInternal.ts +97 -0
  153. package/ts/Private/internal/AgoraMediaBaseInternal.ts +15 -0
  154. package/ts/Private/internal/AudioDeviceManagerInternal.ts +46 -0
  155. package/ts/Private/internal/IrisApiEngine.ts +598 -0
  156. package/ts/Private/internal/LocalSpatialAudioEngineInternal.ts +3 -0
  157. package/ts/Private/internal/MediaEngineInternal.ts +190 -0
  158. package/ts/Private/internal/MediaPlayerInternal.ts +311 -0
  159. package/ts/Private/internal/MediaRecorderInternal.ts +100 -0
  160. package/ts/Private/internal/MusicContentCenterInternal.ts +208 -0
  161. package/ts/Private/internal/RtcEngineExInternal.ts +647 -0
  162. package/ts/Private/ipc/main.ts +22 -0
  163. package/ts/Private/ipc/renderer.ts +21 -0
  164. package/ts/Private/ti/AgoraBase-ti.ts +16 -0
  165. package/ts/Private/ti/AgoraMediaBase-ti.ts +58 -0
  166. package/ts/Private/ti/AgoraMediaPlayerTypes-ti.ts +11 -0
  167. package/ts/Private/ti/IAgoraH265Transcoder-ti.ts +16 -0
  168. package/ts/Private/ti/IAgoraLog-ti.ts +11 -0
  169. package/ts/Private/ti/IAgoraMediaEngine-ti.ts +11 -0
  170. package/ts/Private/ti/IAgoraMediaPlayer-ti.ts +14 -0
  171. package/ts/Private/ti/IAgoraMediaPlayerSource-ti.ts +26 -0
  172. package/ts/Private/ti/IAgoraMediaRecorder-ti.ts +11 -0
  173. package/ts/Private/ti/IAgoraMediaStreamingSource-ti.ts +11 -0
  174. package/ts/Private/ti/IAgoraMusicContentCenter-ti.ts +18 -0
  175. package/ts/Private/ti/IAgoraRhythmPlayer-ti.ts +11 -0
  176. package/ts/Private/ti/IAgoraRtcEngine-ti.ts +119 -0
  177. package/ts/Private/ti/IAgoraRtcEngineEx-ti.ts +11 -0
  178. package/ts/Private/ti/IAgoraSpatialAudio-ti.ts +11 -0
  179. package/ts/Private/ti/IAudioDeviceManager-ti.ts +11 -0
  180. package/ts/Renderer/AgoraView.ts +235 -0
  181. package/ts/Renderer/CapabilityManager.ts +126 -0
  182. package/ts/Renderer/IRenderer.ts +158 -0
  183. package/ts/Renderer/IRendererCache.ts +96 -0
  184. package/ts/Renderer/RendererCache.ts +124 -0
  185. package/ts/Renderer/RendererManager.ts +400 -0
  186. package/ts/Renderer/WebCodecsRenderer/index.ts +145 -0
  187. package/ts/Renderer/WebCodecsRendererCache.ts +137 -0
  188. package/ts/Renderer/WebGLRenderer/index.ts +489 -0
  189. package/ts/Renderer/WebGLRenderer/webgl-utils.js +1510 -0
  190. package/ts/Renderer/YUVCanvasRenderer/index.ts +67 -0
  191. package/ts/Renderer/index.ts +1 -0
  192. package/ts/Types.ts +249 -0
  193. package/ts/Utils.ts +197 -0
  194. package/types/AgoraSdk.d.ts +40 -0
  195. package/types/AgoraSdk.d.ts.map +1 -0
  196. package/types/Decoder/gpu-utils.d.ts +21 -0
  197. package/types/Decoder/gpu-utils.d.ts.map +1 -0
  198. package/types/Decoder/index.d.ts +26 -0
  199. package/types/Decoder/index.d.ts.map +1 -0
  200. package/types/Private/AgoraBase.d.ts +5310 -0
  201. package/types/Private/AgoraBase.d.ts.map +1 -0
  202. package/types/Private/AgoraMediaBase.d.ts +1668 -0
  203. package/types/Private/AgoraMediaBase.d.ts.map +1 -0
  204. package/types/Private/AgoraMediaPlayerTypes.d.ts +453 -0
  205. package/types/Private/AgoraMediaPlayerTypes.d.ts.map +1 -0
  206. package/types/Private/IAgoraH265Transcoder.d.ts +28 -0
  207. package/types/Private/IAgoraH265Transcoder.d.ts.map +1 -0
  208. package/types/Private/IAgoraLog.d.ts +89 -0
  209. package/types/Private/IAgoraLog.d.ts.map +1 -0
  210. package/types/Private/IAgoraMediaEngine.d.ts +250 -0
  211. package/types/Private/IAgoraMediaEngine.d.ts.map +1 -0
  212. package/types/Private/IAgoraMediaPlayer.d.ts +648 -0
  213. package/types/Private/IAgoraMediaPlayer.d.ts.map +1 -0
  214. package/types/Private/IAgoraMediaPlayerSource.d.ts +109 -0
  215. package/types/Private/IAgoraMediaPlayerSource.d.ts.map +1 -0
  216. package/types/Private/IAgoraMediaRecorder.d.ts +20 -0
  217. package/types/Private/IAgoraMediaRecorder.d.ts.map +1 -0
  218. package/types/Private/IAgoraMediaStreamingSource.d.ts +42 -0
  219. package/types/Private/IAgoraMediaStreamingSource.d.ts.map +1 -0
  220. package/types/Private/IAgoraMusicContentCenter.d.ts +381 -0
  221. package/types/Private/IAgoraMusicContentCenter.d.ts.map +1 -0
  222. package/types/Private/IAgoraRhythmPlayer.d.ts +65 -0
  223. package/types/Private/IAgoraRhythmPlayer.d.ts.map +1 -0
  224. package/types/Private/IAgoraRtcEngine.d.ts +6103 -0
  225. package/types/Private/IAgoraRtcEngine.d.ts.map +1 -0
  226. package/types/Private/IAgoraRtcEngineEx.d.ts +741 -0
  227. package/types/Private/IAgoraRtcEngineEx.d.ts.map +1 -0
  228. package/types/Private/IAgoraSpatialAudio.d.ts +196 -0
  229. package/types/Private/IAgoraSpatialAudio.d.ts.map +1 -0
  230. package/types/Private/IAudioDeviceManager.d.ts +312 -0
  231. package/types/Private/IAudioDeviceManager.d.ts.map +1 -0
  232. package/types/Private/extension/AgoraBaseExtension.d.ts +14 -0
  233. package/types/Private/extension/AgoraBaseExtension.d.ts.map +1 -0
  234. package/types/Private/extension/AgoraMediaBaseExtension.d.ts +2 -0
  235. package/types/Private/extension/AgoraMediaBaseExtension.d.ts.map +1 -0
  236. package/types/Private/extension/AgoraMediaPlayerTypesExtension.d.ts +2 -0
  237. package/types/Private/extension/AgoraMediaPlayerTypesExtension.d.ts.map +1 -0
  238. package/types/Private/extension/IAgoraH265TranscoderExtension.d.ts +24 -0
  239. package/types/Private/extension/IAgoraH265TranscoderExtension.d.ts.map +1 -0
  240. package/types/Private/extension/IAgoraLogExtension.d.ts +2 -0
  241. package/types/Private/extension/IAgoraLogExtension.d.ts.map +1 -0
  242. package/types/Private/extension/IAgoraMediaEngineExtension.d.ts +40 -0
  243. package/types/Private/extension/IAgoraMediaEngineExtension.d.ts.map +1 -0
  244. package/types/Private/extension/IAgoraMediaPlayerExtension.d.ts +46 -0
  245. package/types/Private/extension/IAgoraMediaPlayerExtension.d.ts.map +1 -0
  246. package/types/Private/extension/IAgoraMediaPlayerSourceExtension.d.ts +2 -0
  247. package/types/Private/extension/IAgoraMediaPlayerSourceExtension.d.ts.map +1 -0
  248. package/types/Private/extension/IAgoraMediaRecorderExtension.d.ts +44 -0
  249. package/types/Private/extension/IAgoraMediaRecorderExtension.d.ts.map +1 -0
  250. package/types/Private/extension/IAgoraMusicContentCenterExtension.d.ts +20 -0
  251. package/types/Private/extension/IAgoraMusicContentCenterExtension.d.ts.map +1 -0
  252. package/types/Private/extension/IAgoraRhythmPlayerExtension.d.ts +2 -0
  253. package/types/Private/extension/IAgoraRhythmPlayerExtension.d.ts.map +1 -0
  254. package/types/Private/extension/IAgoraRtcEngineExExtension.d.ts +2 -0
  255. package/types/Private/extension/IAgoraRtcEngineExExtension.d.ts.map +1 -0
  256. package/types/Private/extension/IAgoraRtcEngineExtension.d.ts +42 -0
  257. package/types/Private/extension/IAgoraRtcEngineExtension.d.ts.map +1 -0
  258. package/types/Private/extension/IAgoraSpatialAudioExtension.d.ts +2 -0
  259. package/types/Private/extension/IAgoraSpatialAudioExtension.d.ts.map +1 -0
  260. package/types/Private/extension/IAudioDeviceManagerExtension.d.ts +2 -0
  261. package/types/Private/extension/IAudioDeviceManagerExtension.d.ts.map +1 -0
  262. package/types/Private/impl/AgoraBaseImpl.d.ts +3 -0
  263. package/types/Private/impl/AgoraBaseImpl.d.ts.map +1 -0
  264. package/types/Private/impl/AgoraMediaBaseImpl.d.ts +14 -0
  265. package/types/Private/impl/AgoraMediaBaseImpl.d.ts.map +1 -0
  266. package/types/Private/impl/IAgoraH265TranscoderImpl.d.ts +15 -0
  267. package/types/Private/impl/IAgoraH265TranscoderImpl.d.ts.map +1 -0
  268. package/types/Private/impl/IAgoraMediaEngineImpl.d.ts +46 -0
  269. package/types/Private/impl/IAgoraMediaEngineImpl.d.ts.map +1 -0
  270. package/types/Private/impl/IAgoraMediaPlayerImpl.d.ts +143 -0
  271. package/types/Private/impl/IAgoraMediaPlayerImpl.d.ts.map +1 -0
  272. package/types/Private/impl/IAgoraMediaPlayerSourceImpl.d.ts +3 -0
  273. package/types/Private/impl/IAgoraMediaPlayerSourceImpl.d.ts.map +1 -0
  274. package/types/Private/impl/IAgoraMediaRecorderImpl.d.ts +11 -0
  275. package/types/Private/impl/IAgoraMediaRecorderImpl.d.ts.map +1 -0
  276. package/types/Private/impl/IAgoraMusicContentCenterImpl.d.ts +67 -0
  277. package/types/Private/impl/IAgoraMusicContentCenterImpl.d.ts.map +1 -0
  278. package/types/Private/impl/IAgoraRtcEngineExImpl.d.ts +116 -0
  279. package/types/Private/impl/IAgoraRtcEngineExImpl.d.ts.map +1 -0
  280. package/types/Private/impl/IAgoraRtcEngineImpl.d.ts +628 -0
  281. package/types/Private/impl/IAgoraRtcEngineImpl.d.ts.map +1 -0
  282. package/types/Private/impl/IAgoraSpatialAudioImpl.d.ts +47 -0
  283. package/types/Private/impl/IAgoraSpatialAudioImpl.d.ts.map +1 -0
  284. package/types/Private/impl/IAudioDeviceManagerImpl.d.ts +65 -0
  285. package/types/Private/impl/IAudioDeviceManagerImpl.d.ts.map +1 -0
  286. package/types/Private/internal/AgoraH265TranscoderInternal.d.ts +14 -0
  287. package/types/Private/internal/AgoraH265TranscoderInternal.d.ts.map +1 -0
  288. package/types/Private/internal/AgoraMediaBaseInternal.d.ts +8 -0
  289. package/types/Private/internal/AgoraMediaBaseInternal.d.ts.map +1 -0
  290. package/types/Private/internal/AudioDeviceManagerInternal.d.ts +9 -0
  291. package/types/Private/internal/AudioDeviceManagerInternal.d.ts.map +1 -0
  292. package/types/Private/internal/IrisApiEngine.d.ts +69 -0
  293. package/types/Private/internal/IrisApiEngine.d.ts.map +1 -0
  294. package/types/Private/internal/LocalSpatialAudioEngineInternal.d.ts +4 -0
  295. package/types/Private/internal/LocalSpatialAudioEngineInternal.d.ts.map +1 -0
  296. package/types/Private/internal/MediaEngineInternal.d.ts +23 -0
  297. package/types/Private/internal/MediaEngineInternal.d.ts.map +1 -0
  298. package/types/Private/internal/MediaPlayerInternal.d.ts +30 -0
  299. package/types/Private/internal/MediaPlayerInternal.d.ts.map +1 -0
  300. package/types/Private/internal/MediaRecorderInternal.d.ts +16 -0
  301. package/types/Private/internal/MediaRecorderInternal.d.ts.map +1 -0
  302. package/types/Private/internal/MusicContentCenterInternal.d.ts +31 -0
  303. package/types/Private/internal/MusicContentCenterInternal.d.ts.map +1 -0
  304. package/types/Private/internal/RtcEngineExInternal.d.ts +73 -0
  305. package/types/Private/internal/RtcEngineExInternal.d.ts.map +1 -0
  306. package/types/Private/ipc/main.d.ts +2 -0
  307. package/types/Private/ipc/main.d.ts.map +1 -0
  308. package/types/Private/ipc/renderer.d.ts +3 -0
  309. package/types/Private/ipc/renderer.d.ts.map +1 -0
  310. package/types/Private/ti/AgoraBase-ti.d.ts +8 -0
  311. package/types/Private/ti/AgoraBase-ti.d.ts.map +1 -0
  312. package/types/Private/ti/AgoraMediaBase-ti.d.ts +15 -0
  313. package/types/Private/ti/AgoraMediaBase-ti.d.ts.map +1 -0
  314. package/types/Private/ti/AgoraMediaPlayerTypes-ti.d.ts +7 -0
  315. package/types/Private/ti/AgoraMediaPlayerTypes-ti.d.ts.map +1 -0
  316. package/types/Private/ti/IAgoraH265Transcoder-ti.d.ts +8 -0
  317. package/types/Private/ti/IAgoraH265Transcoder-ti.d.ts.map +1 -0
  318. package/types/Private/ti/IAgoraLog-ti.d.ts +7 -0
  319. package/types/Private/ti/IAgoraLog-ti.d.ts.map +1 -0
  320. package/types/Private/ti/IAgoraMediaEngine-ti.d.ts +7 -0
  321. package/types/Private/ti/IAgoraMediaEngine-ti.d.ts.map +1 -0
  322. package/types/Private/ti/IAgoraMediaPlayer-ti.d.ts +8 -0
  323. package/types/Private/ti/IAgoraMediaPlayer-ti.d.ts.map +1 -0
  324. package/types/Private/ti/IAgoraMediaPlayerSource-ti.d.ts +8 -0
  325. package/types/Private/ti/IAgoraMediaPlayerSource-ti.d.ts.map +1 -0
  326. package/types/Private/ti/IAgoraMediaRecorder-ti.d.ts +7 -0
  327. package/types/Private/ti/IAgoraMediaRecorder-ti.d.ts.map +1 -0
  328. package/types/Private/ti/IAgoraMediaStreamingSource-ti.d.ts +7 -0
  329. package/types/Private/ti/IAgoraMediaStreamingSource-ti.d.ts.map +1 -0
  330. package/types/Private/ti/IAgoraMusicContentCenter-ti.d.ts +8 -0
  331. package/types/Private/ti/IAgoraMusicContentCenter-ti.d.ts.map +1 -0
  332. package/types/Private/ti/IAgoraRhythmPlayer-ti.d.ts +7 -0
  333. package/types/Private/ti/IAgoraRhythmPlayer-ti.d.ts.map +1 -0
  334. package/types/Private/ti/IAgoraRtcEngine-ti.d.ts +10 -0
  335. package/types/Private/ti/IAgoraRtcEngine-ti.d.ts.map +1 -0
  336. package/types/Private/ti/IAgoraRtcEngineEx-ti.d.ts +7 -0
  337. package/types/Private/ti/IAgoraRtcEngineEx-ti.d.ts.map +1 -0
  338. package/types/Private/ti/IAgoraSpatialAudio-ti.d.ts +7 -0
  339. package/types/Private/ti/IAgoraSpatialAudio-ti.d.ts.map +1 -0
  340. package/types/Private/ti/IAudioDeviceManager-ti.d.ts +7 -0
  341. package/types/Private/ti/IAudioDeviceManager-ti.d.ts.map +1 -0
  342. package/types/Renderer/AgoraView.d.ts +76 -0
  343. package/types/Renderer/AgoraView.d.ts.map +1 -0
  344. package/types/Renderer/CapabilityManager.d.ts +20 -0
  345. package/types/Renderer/CapabilityManager.d.ts.map +1 -0
  346. package/types/Renderer/IRenderer.d.ts +20 -0
  347. package/types/Renderer/IRenderer.d.ts.map +1 -0
  348. package/types/Renderer/IRendererCache.d.ts +26 -0
  349. package/types/Renderer/IRendererCache.d.ts.map +1 -0
  350. package/types/Renderer/RendererCache.d.ts +24 -0
  351. package/types/Renderer/RendererCache.d.ts.map +1 -0
  352. package/types/Renderer/RendererManager.d.ts +66 -0
  353. package/types/Renderer/RendererManager.d.ts.map +1 -0
  354. package/types/Renderer/WebCodecsRenderer/index.d.ts +14 -0
  355. package/types/Renderer/WebCodecsRenderer/index.d.ts.map +1 -0
  356. package/types/Renderer/WebCodecsRendererCache.d.ts +15 -0
  357. package/types/Renderer/WebCodecsRendererCache.d.ts.map +1 -0
  358. package/types/Renderer/WebGLRenderer/index.d.ts +27 -0
  359. package/types/Renderer/WebGLRenderer/index.d.ts.map +1 -0
  360. package/types/Renderer/WebGLRenderer/webgl-utils.d.ts +1 -0
  361. package/types/Renderer/WebGLRenderer/webgl-utils.d.ts.map +1 -0
  362. package/types/Renderer/YUVCanvasRenderer/index.d.ts +9 -0
  363. package/types/Renderer/YUVCanvasRenderer/index.d.ts.map +1 -0
  364. package/types/Renderer/index.d.ts +2 -0
  365. package/types/Renderer/index.d.ts.map +1 -0
  366. package/types/Types.d.ts +177 -0
  367. package/types/Types.d.ts.map +1 -0
  368. package/types/Utils.d.ts +50 -0
  369. package/types/Utils.d.ts.map +1 -0
@@ -0,0 +1,116 @@
1
+ import { ChannelMediaRelayConfiguration, ConnectionStateType, DataStreamConfig, EncryptionConfig, LiveTranscoding, SimulcastConfig, SimulcastStreamConfig, SimulcastStreamMode, SpatialAudioParams, UserInfo, VideoCanvas, VideoEncoderConfiguration, VideoMirrorModeType, VideoStreamType, VideoSubscriptionOptions, WatermarkOptions } from '../AgoraBase';
2
+ import { ContentInspectConfig, RenderModeType, SnapshotConfig } from '../AgoraMediaBase';
3
+ import { ChannelMediaOptions, LeaveChannelOptions, StreamFallbackOptions } from '../IAgoraRtcEngine';
4
+ import { IRtcEngineEx, RtcConnection } from '../IAgoraRtcEngineEx';
5
+ import { IRtcEngineImpl } from './IAgoraRtcEngineImpl';
6
+ export declare class IRtcEngineExImpl extends IRtcEngineImpl implements IRtcEngineEx {
7
+ joinChannelEx(token: string, connection: RtcConnection, options: ChannelMediaOptions): number;
8
+ protected getApiTypeFromJoinChannelEx(token: string, connection: RtcConnection, options: ChannelMediaOptions): string;
9
+ leaveChannelEx(connection: RtcConnection, options?: LeaveChannelOptions): number;
10
+ protected getApiTypeFromLeaveChannelEx(connection: RtcConnection, options?: LeaveChannelOptions): string;
11
+ leaveChannelWithUserAccountEx(channelId: string, userAccount: string, options?: LeaveChannelOptions): number;
12
+ protected getApiTypeFromLeaveChannelWithUserAccountEx(channelId: string, userAccount: string, options?: LeaveChannelOptions): string;
13
+ updateChannelMediaOptionsEx(options: ChannelMediaOptions, connection: RtcConnection): number;
14
+ protected getApiTypeFromUpdateChannelMediaOptionsEx(options: ChannelMediaOptions, connection: RtcConnection): string;
15
+ setVideoEncoderConfigurationEx(config: VideoEncoderConfiguration, connection: RtcConnection): number;
16
+ protected getApiTypeFromSetVideoEncoderConfigurationEx(config: VideoEncoderConfiguration, connection: RtcConnection): string;
17
+ setupRemoteVideoEx(canvas: VideoCanvas, connection: RtcConnection): number;
18
+ protected getApiTypeFromSetupRemoteVideoEx(canvas: VideoCanvas, connection: RtcConnection): string;
19
+ muteRemoteAudioStreamEx(uid: number, mute: boolean, connection: RtcConnection): number;
20
+ protected getApiTypeFromMuteRemoteAudioStreamEx(uid: number, mute: boolean, connection: RtcConnection): string;
21
+ muteRemoteVideoStreamEx(uid: number, mute: boolean, connection: RtcConnection): number;
22
+ protected getApiTypeFromMuteRemoteVideoStreamEx(uid: number, mute: boolean, connection: RtcConnection): string;
23
+ setRemoteVideoStreamTypeEx(uid: number, streamType: VideoStreamType, connection: RtcConnection): number;
24
+ protected getApiTypeFromSetRemoteVideoStreamTypeEx(uid: number, streamType: VideoStreamType, connection: RtcConnection): string;
25
+ muteLocalAudioStreamEx(mute: boolean, connection: RtcConnection): number;
26
+ protected getApiTypeFromMuteLocalAudioStreamEx(mute: boolean, connection: RtcConnection): string;
27
+ muteLocalVideoStreamEx(mute: boolean, connection: RtcConnection): number;
28
+ protected getApiTypeFromMuteLocalVideoStreamEx(mute: boolean, connection: RtcConnection): string;
29
+ muteAllRemoteAudioStreamsEx(mute: boolean, connection: RtcConnection): number;
30
+ protected getApiTypeFromMuteAllRemoteAudioStreamsEx(mute: boolean, connection: RtcConnection): string;
31
+ muteAllRemoteVideoStreamsEx(mute: boolean, connection: RtcConnection): number;
32
+ protected getApiTypeFromMuteAllRemoteVideoStreamsEx(mute: boolean, connection: RtcConnection): string;
33
+ setSubscribeAudioBlocklistEx(uidList: number[], uidNumber: number, connection: RtcConnection): number;
34
+ protected getApiTypeFromSetSubscribeAudioBlocklistEx(uidList: number[], uidNumber: number, connection: RtcConnection): string;
35
+ setSubscribeAudioAllowlistEx(uidList: number[], uidNumber: number, connection: RtcConnection): number;
36
+ protected getApiTypeFromSetSubscribeAudioAllowlistEx(uidList: number[], uidNumber: number, connection: RtcConnection): string;
37
+ setSubscribeVideoBlocklistEx(uidList: number[], uidNumber: number, connection: RtcConnection): number;
38
+ protected getApiTypeFromSetSubscribeVideoBlocklistEx(uidList: number[], uidNumber: number, connection: RtcConnection): string;
39
+ setSubscribeVideoAllowlistEx(uidList: number[], uidNumber: number, connection: RtcConnection): number;
40
+ protected getApiTypeFromSetSubscribeVideoAllowlistEx(uidList: number[], uidNumber: number, connection: RtcConnection): string;
41
+ setRemoteVideoSubscriptionOptionsEx(uid: number, options: VideoSubscriptionOptions, connection: RtcConnection): number;
42
+ protected getApiTypeFromSetRemoteVideoSubscriptionOptionsEx(uid: number, options: VideoSubscriptionOptions, connection: RtcConnection): string;
43
+ setRemoteVoicePositionEx(uid: number, pan: number, gain: number, connection: RtcConnection): number;
44
+ protected getApiTypeFromSetRemoteVoicePositionEx(uid: number, pan: number, gain: number, connection: RtcConnection): string;
45
+ setRemoteUserSpatialAudioParamsEx(uid: number, params: SpatialAudioParams, connection: RtcConnection): number;
46
+ protected getApiTypeFromSetRemoteUserSpatialAudioParamsEx(uid: number, params: SpatialAudioParams, connection: RtcConnection): string;
47
+ setRemoteRenderModeEx(uid: number, renderMode: RenderModeType, mirrorMode: VideoMirrorModeType, connection: RtcConnection): number;
48
+ protected getApiTypeFromSetRemoteRenderModeEx(uid: number, renderMode: RenderModeType, mirrorMode: VideoMirrorModeType, connection: RtcConnection): string;
49
+ enableLoopbackRecordingEx(connection: RtcConnection, enabled: boolean, deviceName?: string): number;
50
+ protected getApiTypeFromEnableLoopbackRecordingEx(connection: RtcConnection, enabled: boolean, deviceName?: string): string;
51
+ adjustRecordingSignalVolumeEx(volume: number, connection: RtcConnection): number;
52
+ protected getApiTypeFromAdjustRecordingSignalVolumeEx(volume: number, connection: RtcConnection): string;
53
+ muteRecordingSignalEx(mute: boolean, connection: RtcConnection): number;
54
+ protected getApiTypeFromMuteRecordingSignalEx(mute: boolean, connection: RtcConnection): string;
55
+ adjustUserPlaybackSignalVolumeEx(uid: number, volume: number, connection: RtcConnection): number;
56
+ protected getApiTypeFromAdjustUserPlaybackSignalVolumeEx(uid: number, volume: number, connection: RtcConnection): string;
57
+ getConnectionStateEx(connection: RtcConnection): ConnectionStateType;
58
+ protected getApiTypeFromGetConnectionStateEx(connection: RtcConnection): string;
59
+ enableEncryptionEx(connection: RtcConnection, enabled: boolean, config: EncryptionConfig): number;
60
+ protected getApiTypeFromEnableEncryptionEx(connection: RtcConnection, enabled: boolean, config: EncryptionConfig): string;
61
+ createDataStreamEx(config: DataStreamConfig, connection: RtcConnection): number;
62
+ protected getApiTypeFromCreateDataStreamEx(config: DataStreamConfig, connection: RtcConnection): string;
63
+ sendStreamMessageEx(streamId: number, data: Uint8Array, length: number, connection: RtcConnection): number;
64
+ protected getApiTypeFromSendStreamMessageEx(streamId: number, data: Uint8Array, length: number, connection: RtcConnection): string;
65
+ addVideoWatermarkEx(watermarkUrl: string, options: WatermarkOptions, connection: RtcConnection): number;
66
+ protected getApiTypeFromAddVideoWatermarkEx(watermarkUrl: string, options: WatermarkOptions, connection: RtcConnection): string;
67
+ clearVideoWatermarkEx(connection: RtcConnection): number;
68
+ protected getApiTypeFromClearVideoWatermarkEx(connection: RtcConnection): string;
69
+ sendCustomReportMessageEx(id: string, category: string, event: string, label: string, value: number, connection: RtcConnection): number;
70
+ protected getApiTypeFromSendCustomReportMessageEx(id: string, category: string, event: string, label: string, value: number, connection: RtcConnection): string;
71
+ enableAudioVolumeIndicationEx(interval: number, smooth: number, reportVad: boolean, connection: RtcConnection): number;
72
+ protected getApiTypeFromEnableAudioVolumeIndicationEx(interval: number, smooth: number, reportVad: boolean, connection: RtcConnection): string;
73
+ startRtmpStreamWithoutTranscodingEx(url: string, connection: RtcConnection): number;
74
+ protected getApiTypeFromStartRtmpStreamWithoutTranscodingEx(url: string, connection: RtcConnection): string;
75
+ startRtmpStreamWithTranscodingEx(url: string, transcoding: LiveTranscoding, connection: RtcConnection): number;
76
+ protected getApiTypeFromStartRtmpStreamWithTranscodingEx(url: string, transcoding: LiveTranscoding, connection: RtcConnection): string;
77
+ updateRtmpTranscodingEx(transcoding: LiveTranscoding, connection: RtcConnection): number;
78
+ protected getApiTypeFromUpdateRtmpTranscodingEx(transcoding: LiveTranscoding, connection: RtcConnection): string;
79
+ stopRtmpStreamEx(url: string, connection: RtcConnection): number;
80
+ protected getApiTypeFromStopRtmpStreamEx(url: string, connection: RtcConnection): string;
81
+ startOrUpdateChannelMediaRelayEx(configuration: ChannelMediaRelayConfiguration, connection: RtcConnection): number;
82
+ protected getApiTypeFromStartOrUpdateChannelMediaRelayEx(configuration: ChannelMediaRelayConfiguration, connection: RtcConnection): string;
83
+ stopChannelMediaRelayEx(connection: RtcConnection): number;
84
+ protected getApiTypeFromStopChannelMediaRelayEx(connection: RtcConnection): string;
85
+ pauseAllChannelMediaRelayEx(connection: RtcConnection): number;
86
+ protected getApiTypeFromPauseAllChannelMediaRelayEx(connection: RtcConnection): string;
87
+ resumeAllChannelMediaRelayEx(connection: RtcConnection): number;
88
+ protected getApiTypeFromResumeAllChannelMediaRelayEx(connection: RtcConnection): string;
89
+ getUserInfoByUserAccountEx(userAccount: string, connection: RtcConnection): UserInfo;
90
+ protected getApiTypeFromGetUserInfoByUserAccountEx(userAccount: string, connection: RtcConnection): string;
91
+ getUserInfoByUidEx(uid: number, connection: RtcConnection): UserInfo;
92
+ protected getApiTypeFromGetUserInfoByUidEx(uid: number, connection: RtcConnection): string;
93
+ enableDualStreamModeEx(enabled: boolean, streamConfig: SimulcastStreamConfig, connection: RtcConnection): number;
94
+ protected getApiTypeFromEnableDualStreamModeEx(enabled: boolean, streamConfig: SimulcastStreamConfig, connection: RtcConnection): string;
95
+ setDualStreamModeEx(mode: SimulcastStreamMode, streamConfig: SimulcastStreamConfig, connection: RtcConnection): number;
96
+ protected getApiTypeFromSetDualStreamModeEx(mode: SimulcastStreamMode, streamConfig: SimulcastStreamConfig, connection: RtcConnection): string;
97
+ setSimulcastConfigEx(simulcastConfig: SimulcastConfig, connection: RtcConnection): number;
98
+ protected getApiTypeFromSetSimulcastConfigEx(simulcastConfig: SimulcastConfig, connection: RtcConnection): string;
99
+ setHighPriorityUserListEx(uidList: number[], uidNum: number, option: StreamFallbackOptions, connection: RtcConnection): number;
100
+ protected getApiTypeFromSetHighPriorityUserListEx(uidList: number[], uidNum: number, option: StreamFallbackOptions, connection: RtcConnection): string;
101
+ takeSnapshotEx(connection: RtcConnection, uid: number, filePath: string): number;
102
+ protected getApiTypeFromTakeSnapshotEx(connection: RtcConnection, uid: number, filePath: string): string;
103
+ enableContentInspectEx(enabled: boolean, config: ContentInspectConfig, connection: RtcConnection): number;
104
+ protected getApiTypeFromEnableContentInspectEx(enabled: boolean, config: ContentInspectConfig, connection: RtcConnection): string;
105
+ startMediaRenderingTracingEx(connection: RtcConnection): number;
106
+ protected getApiTypeFromStartMediaRenderingTracingEx(connection: RtcConnection): string;
107
+ setParametersEx(connection: RtcConnection, parameters: string): number;
108
+ protected getApiTypeFromSetParametersEx(connection: RtcConnection, parameters: string): string;
109
+ getCallIdEx(connection: RtcConnection): string;
110
+ protected getApiTypeFromGetCallIdEx(connection: RtcConnection): string;
111
+ sendAudioMetadataEx(connection: RtcConnection, metadata: string, length: number): number;
112
+ protected getApiTypeFromSendAudioMetadataEx(connection: RtcConnection, metadata: string, length: number): string;
113
+ takeSnapshotWithConfigEx(connection: RtcConnection, uid: number, config: SnapshotConfig): number;
114
+ protected getApiTypeFromTakeSnapshotWithConfigEx(connection: RtcConnection, uid: number, config: SnapshotConfig): string;
115
+ }
116
+ //# sourceMappingURL=IAgoraRtcEngineExImpl.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IAgoraRtcEngineExImpl.d.ts","sourceRoot":"","sources":["../../../ts/Private/impl/IAgoraRtcEngineExImpl.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,8BAA8B,EAC9B,mBAAmB,EACnB,gBAAgB,EAChB,gBAAgB,EAChB,eAAe,EACf,eAAe,EACf,qBAAqB,EACrB,mBAAmB,EACnB,kBAAkB,EAClB,QAAQ,EACR,WAAW,EACX,yBAAyB,EACzB,mBAAmB,EACnB,eAAe,EACf,wBAAwB,EACxB,gBAAgB,EACjB,MAAM,cAAc,CAAC;AACtB,OAAO,EACL,oBAAoB,EACpB,cAAc,EACd,cAAc,EACf,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EACL,mBAAmB,EACnB,mBAAmB,EACnB,qBAAqB,EACtB,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAEnE,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AAGvD,qBAAa,gBAAiB,SAAQ,cAAe,YAAW,YAAY;IAC1E,aAAa,CACX,KAAK,EAAE,MAAM,EACb,UAAU,EAAE,aAAa,EACzB,OAAO,EAAE,mBAAmB,GAC3B,MAAM;IAsBT,SAAS,CAAC,2BAA2B,CACnC,KAAK,EAAE,MAAM,EACb,UAAU,EAAE,aAAa,EACzB,OAAO,EAAE,mBAAmB,GAC3B,MAAM;IAIT,cAAc,CACZ,UAAU,EAAE,aAAa,EACzB,OAAO,CAAC,EAAE,mBAAmB,GAC5B,MAAM;IAgBT,SAAS,CAAC,4BAA4B,CACpC,UAAU,EAAE,aAAa,EACzB,OAAO,CAAC,EAAE,mBAAmB,GAC5B,MAAM;IAIT,6BAA6B,CAC3B,SAAS,EAAE,MAAM,EACjB,WAAW,EAAE,MAAM,EACnB,OAAO,CAAC,EAAE,mBAAmB,GAC5B,MAAM;IAsBT,SAAS,CAAC,2CAA2C,CACnD,SAAS,EAAE,MAAM,EACjB,WAAW,EAAE,MAAM,EACnB,OAAO,CAAC,EAAE,mBAAmB,GAC5B,MAAM;IAIT,2BAA2B,CACzB,OAAO,EAAE,mBAAmB,EAC5B,UAAU,EAAE,aAAa,GACxB,MAAM;IAmBT,SAAS,CAAC,yCAAyC,CACjD,OAAO,EAAE,mBAAmB,EAC5B,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,8BAA8B,CAC5B,MAAM,EAAE,yBAAyB,EACjC,UAAU,EAAE,aAAa,GACxB,MAAM;IAmBT,SAAS,CAAC,4CAA4C,CACpD,MAAM,EAAE,yBAAyB,EACjC,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,kBAAkB,CAAC,MAAM,EAAE,WAAW,EAAE,UAAU,EAAE,aAAa,GAAG,MAAM;IAgB1E,SAAS,CAAC,gCAAgC,CACxC,MAAM,EAAE,WAAW,EACnB,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,uBAAuB,CACrB,GAAG,EAAE,MAAM,EACX,IAAI,EAAE,OAAO,EACb,UAAU,EAAE,aAAa,GACxB,MAAM;IAsBT,SAAS,CAAC,qCAAqC,CAC7C,GAAG,EAAE,MAAM,EACX,IAAI,EAAE,OAAO,EACb,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,uBAAuB,CACrB,GAAG,EAAE,MAAM,EACX,IAAI,EAAE,OAAO,EACb,UAAU,EAAE,aAAa,GACxB,MAAM;IAsBT,SAAS,CAAC,qCAAqC,CAC7C,GAAG,EAAE,MAAM,EACX,IAAI,EAAE,OAAO,EACb,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,0BAA0B,CACxB,GAAG,EAAE,MAAM,EACX,UAAU,EAAE,eAAe,EAC3B,UAAU,EAAE,aAAa,GACxB,MAAM;IAsBT,SAAS,CAAC,wCAAwC,CAChD,GAAG,EAAE,MAAM,EACX,UAAU,EAAE,eAAe,EAC3B,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,sBAAsB,CAAC,IAAI,EAAE,OAAO,EAAE,UAAU,EAAE,aAAa,GAAG,MAAM;IAgBxE,SAAS,CAAC,oCAAoC,CAC5C,IAAI,EAAE,OAAO,EACb,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,sBAAsB,CAAC,IAAI,EAAE,OAAO,EAAE,UAAU,EAAE,aAAa,GAAG,MAAM;IAgBxE,SAAS,CAAC,oCAAoC,CAC5C,IAAI,EAAE,OAAO,EACb,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,2BAA2B,CACzB,IAAI,EAAE,OAAO,EACb,UAAU,EAAE,aAAa,GACxB,MAAM;IAmBT,SAAS,CAAC,yCAAyC,CACjD,IAAI,EAAE,OAAO,EACb,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,2BAA2B,CACzB,IAAI,EAAE,OAAO,EACb,UAAU,EAAE,aAAa,GACxB,MAAM;IAmBT,SAAS,CAAC,yCAAyC,CACjD,IAAI,EAAE,OAAO,EACb,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,4BAA4B,CAC1B,OAAO,EAAE,MAAM,EAAE,EACjB,SAAS,EAAE,MAAM,EACjB,UAAU,EAAE,aAAa,GACxB,MAAM;IAsBT,SAAS,CAAC,0CAA0C,CAClD,OAAO,EAAE,MAAM,EAAE,EACjB,SAAS,EAAE,MAAM,EACjB,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,4BAA4B,CAC1B,OAAO,EAAE,MAAM,EAAE,EACjB,SAAS,EAAE,MAAM,EACjB,UAAU,EAAE,aAAa,GACxB,MAAM;IAsBT,SAAS,CAAC,0CAA0C,CAClD,OAAO,EAAE,MAAM,EAAE,EACjB,SAAS,EAAE,MAAM,EACjB,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,4BAA4B,CAC1B,OAAO,EAAE,MAAM,EAAE,EACjB,SAAS,EAAE,MAAM,EACjB,UAAU,EAAE,aAAa,GACxB,MAAM;IAsBT,SAAS,CAAC,0CAA0C,CAClD,OAAO,EAAE,MAAM,EAAE,EACjB,SAAS,EAAE,MAAM,EACjB,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,4BAA4B,CAC1B,OAAO,EAAE,MAAM,EAAE,EACjB,SAAS,EAAE,MAAM,EACjB,UAAU,EAAE,aAAa,GACxB,MAAM;IAsBT,SAAS,CAAC,0CAA0C,CAClD,OAAO,EAAE,MAAM,EAAE,EACjB,SAAS,EAAE,MAAM,EACjB,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,mCAAmC,CACjC,GAAG,EAAE,MAAM,EACX,OAAO,EAAE,wBAAwB,EACjC,UAAU,EAAE,aAAa,GACxB,MAAM;IAsBT,SAAS,CAAC,iDAAiD,CACzD,GAAG,EAAE,MAAM,EACX,OAAO,EAAE,wBAAwB,EACjC,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,wBAAwB,CACtB,GAAG,EAAE,MAAM,EACX,GAAG,EAAE,MAAM,EACX,IAAI,EAAE,MAAM,EACZ,UAAU,EAAE,aAAa,GACxB,MAAM;IAyBT,SAAS,CAAC,sCAAsC,CAC9C,GAAG,EAAE,MAAM,EACX,GAAG,EAAE,MAAM,EACX,IAAI,EAAE,MAAM,EACZ,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,iCAAiC,CAC/B,GAAG,EAAE,MAAM,EACX,MAAM,EAAE,kBAAkB,EAC1B,UAAU,EAAE,aAAa,GACxB,MAAM;IAsBT,SAAS,CAAC,+CAA+C,CACvD,GAAG,EAAE,MAAM,EACX,MAAM,EAAE,kBAAkB,EAC1B,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,qBAAqB,CACnB,GAAG,EAAE,MAAM,EACX,UAAU,EAAE,cAAc,EAC1B,UAAU,EAAE,mBAAmB,EAC/B,UAAU,EAAE,aAAa,GACxB,MAAM;IAyBT,SAAS,CAAC,mCAAmC,CAC3C,GAAG,EAAE,MAAM,EACX,UAAU,EAAE,cAAc,EAC1B,UAAU,EAAE,mBAAmB,EAC/B,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,yBAAyB,CACvB,UAAU,EAAE,aAAa,EACzB,OAAO,EAAE,OAAO,EAChB,UAAU,CAAC,EAAE,MAAM,GAClB,MAAM;IAsBT,SAAS,CAAC,uCAAuC,CAC/C,UAAU,EAAE,aAAa,EACzB,OAAO,EAAE,OAAO,EAChB,UAAU,CAAC,EAAE,MAAM,GAClB,MAAM;IAIT,6BAA6B,CAC3B,MAAM,EAAE,MAAM,EACd,UAAU,EAAE,aAAa,GACxB,MAAM;IAmBT,SAAS,CAAC,2CAA2C,CACnD,MAAM,EAAE,MAAM,EACd,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,qBAAqB,CAAC,IAAI,EAAE,OAAO,EAAE,UAAU,EAAE,aAAa,GAAG,MAAM;IAgBvE,SAAS,CAAC,mCAAmC,CAC3C,IAAI,EAAE,OAAO,EACb,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,gCAAgC,CAC9B,GAAG,EAAE,MAAM,EACX,MAAM,EAAE,MAAM,EACd,UAAU,EAAE,aAAa,GACxB,MAAM;IAsBT,SAAS,CAAC,8CAA8C,CACtD,GAAG,EAAE,MAAM,EACX,MAAM,EAAE,MAAM,EACd,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,oBAAoB,CAAC,UAAU,EAAE,aAAa,GAAG,mBAAmB;IAcpE,SAAS,CAAC,kCAAkC,CAC1C,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,kBAAkB,CAChB,UAAU,EAAE,aAAa,EACzB,OAAO,EAAE,OAAO,EAChB,MAAM,EAAE,gBAAgB,GACvB,MAAM;IAsBT,SAAS,CAAC,gCAAgC,CACxC,UAAU,EAAE,aAAa,EACzB,OAAO,EAAE,OAAO,EAChB,MAAM,EAAE,gBAAgB,GACvB,MAAM;IAIT,kBAAkB,CAChB,MAAM,EAAE,gBAAgB,EACxB,UAAU,EAAE,aAAa,GACxB,MAAM;IAiBT,SAAS,CAAC,gCAAgC,CACxC,MAAM,EAAE,gBAAgB,EACxB,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,mBAAmB,CACjB,QAAQ,EAAE,MAAM,EAChB,IAAI,EAAE,UAAU,EAChB,MAAM,EAAE,MAAM,EACd,UAAU,EAAE,aAAa,GACxB,MAAM;IAwBT,SAAS,CAAC,iCAAiC,CACzC,QAAQ,EAAE,MAAM,EAChB,IAAI,EAAE,UAAU,EAChB,MAAM,EAAE,MAAM,EACd,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,mBAAmB,CACjB,YAAY,EAAE,MAAM,EACpB,OAAO,EAAE,gBAAgB,EACzB,UAAU,EAAE,aAAa,GACxB,MAAM;IAsBT,SAAS,CAAC,iCAAiC,CACzC,YAAY,EAAE,MAAM,EACpB,OAAO,EAAE,gBAAgB,EACzB,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,qBAAqB,CAAC,UAAU,EAAE,aAAa,GAAG,MAAM;IAcxD,SAAS,CAAC,mCAAmC,CAC3C,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,yBAAyB,CACvB,EAAE,EAAE,MAAM,EACV,QAAQ,EAAE,MAAM,EAChB,KAAK,EAAE,MAAM,EACb,KAAK,EAAE,MAAM,EACb,KAAK,EAAE,MAAM,EACb,UAAU,EAAE,aAAa,GACxB,MAAM;IA+BT,SAAS,CAAC,uCAAuC,CAC/C,EAAE,EAAE,MAAM,EACV,QAAQ,EAAE,MAAM,EAChB,KAAK,EAAE,MAAM,EACb,KAAK,EAAE,MAAM,EACb,KAAK,EAAE,MAAM,EACb,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,6BAA6B,CAC3B,QAAQ,EAAE,MAAM,EAChB,MAAM,EAAE,MAAM,EACd,SAAS,EAAE,OAAO,EAClB,UAAU,EAAE,aAAa,GACxB,MAAM;IAyBT,SAAS,CAAC,2CAA2C,CACnD,QAAQ,EAAE,MAAM,EAChB,MAAM,EAAE,MAAM,EACd,SAAS,EAAE,OAAO,EAClB,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,mCAAmC,CACjC,GAAG,EAAE,MAAM,EACX,UAAU,EAAE,aAAa,GACxB,MAAM;IAmBT,SAAS,CAAC,iDAAiD,CACzD,GAAG,EAAE,MAAM,EACX,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,gCAAgC,CAC9B,GAAG,EAAE,MAAM,EACX,WAAW,EAAE,eAAe,EAC5B,UAAU,EAAE,aAAa,GACxB,MAAM;IAsBT,SAAS,CAAC,8CAA8C,CACtD,GAAG,EAAE,MAAM,EACX,WAAW,EAAE,eAAe,EAC5B,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,uBAAuB,CACrB,WAAW,EAAE,eAAe,EAC5B,UAAU,EAAE,aAAa,GACxB,MAAM;IAmBT,SAAS,CAAC,qCAAqC,CAC7C,WAAW,EAAE,eAAe,EAC5B,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,gBAAgB,CAAC,GAAG,EAAE,MAAM,EAAE,UAAU,EAAE,aAAa,GAAG,MAAM;IAgBhE,SAAS,CAAC,8BAA8B,CACtC,GAAG,EAAE,MAAM,EACX,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,gCAAgC,CAC9B,aAAa,EAAE,8BAA8B,EAC7C,UAAU,EAAE,aAAa,GACxB,MAAM;IAmBT,SAAS,CAAC,8CAA8C,CACtD,aAAa,EAAE,8BAA8B,EAC7C,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,uBAAuB,CAAC,UAAU,EAAE,aAAa,GAAG,MAAM;IAc1D,SAAS,CAAC,qCAAqC,CAC7C,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,2BAA2B,CAAC,UAAU,EAAE,aAAa,GAAG,MAAM;IAc9D,SAAS,CAAC,yCAAyC,CACjD,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,4BAA4B,CAAC,UAAU,EAAE,aAAa,GAAG,MAAM;IAc/D,SAAS,CAAC,0CAA0C,CAClD,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,0BAA0B,CACxB,WAAW,EAAE,MAAM,EACnB,UAAU,EAAE,aAAa,GACxB,QAAQ;IAoBX,SAAS,CAAC,wCAAwC,CAChD,WAAW,EAAE,MAAM,EACnB,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,kBAAkB,CAAC,GAAG,EAAE,MAAM,EAAE,UAAU,EAAE,aAAa,GAAG,QAAQ;IAiBpE,SAAS,CAAC,gCAAgC,CACxC,GAAG,EAAE,MAAM,EACX,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,sBAAsB,CACpB,OAAO,EAAE,OAAO,EAChB,YAAY,EAAE,qBAAqB,EACnC,UAAU,EAAE,aAAa,GACxB,MAAM;IAsBT,SAAS,CAAC,oCAAoC,CAC5C,OAAO,EAAE,OAAO,EAChB,YAAY,EAAE,qBAAqB,EACnC,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,mBAAmB,CACjB,IAAI,EAAE,mBAAmB,EACzB,YAAY,EAAE,qBAAqB,EACnC,UAAU,EAAE,aAAa,GACxB,MAAM;IAsBT,SAAS,CAAC,iCAAiC,CACzC,IAAI,EAAE,mBAAmB,EACzB,YAAY,EAAE,qBAAqB,EACnC,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,oBAAoB,CAClB,eAAe,EAAE,eAAe,EAChC,UAAU,EAAE,aAAa,GACxB,MAAM;IAmBT,SAAS,CAAC,kCAAkC,CAC1C,eAAe,EAAE,eAAe,EAChC,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,yBAAyB,CACvB,OAAO,EAAE,MAAM,EAAE,EACjB,MAAM,EAAE,MAAM,EACd,MAAM,EAAE,qBAAqB,EAC7B,UAAU,EAAE,aAAa,GACxB,MAAM;IAyBT,SAAS,CAAC,uCAAuC,CAC/C,OAAO,EAAE,MAAM,EAAE,EACjB,MAAM,EAAE,MAAM,EACd,MAAM,EAAE,qBAAqB,EAC7B,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,cAAc,CACZ,UAAU,EAAE,aAAa,EACzB,GAAG,EAAE,MAAM,EACX,QAAQ,EAAE,MAAM,GACf,MAAM;IAsBT,SAAS,CAAC,4BAA4B,CACpC,UAAU,EAAE,aAAa,EACzB,GAAG,EAAE,MAAM,EACX,QAAQ,EAAE,MAAM,GACf,MAAM;IAIT,sBAAsB,CACpB,OAAO,EAAE,OAAO,EAChB,MAAM,EAAE,oBAAoB,EAC5B,UAAU,EAAE,aAAa,GACxB,MAAM;IAsBT,SAAS,CAAC,oCAAoC,CAC5C,OAAO,EAAE,OAAO,EAChB,MAAM,EAAE,oBAAoB,EAC5B,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,4BAA4B,CAAC,UAAU,EAAE,aAAa,GAAG,MAAM;IAc/D,SAAS,CAAC,0CAA0C,CAClD,UAAU,EAAE,aAAa,GACxB,MAAM;IAIT,eAAe,CAAC,UAAU,EAAE,aAAa,EAAE,UAAU,EAAE,MAAM,GAAG,MAAM;IAgBtE,SAAS,CAAC,6BAA6B,CACrC,UAAU,EAAE,aAAa,EACzB,UAAU,EAAE,MAAM,GACjB,MAAM;IAIT,WAAW,CAAC,UAAU,EAAE,aAAa,GAAG,MAAM;IAe9C,SAAS,CAAC,yBAAyB,CAAC,UAAU,EAAE,aAAa,GAAG,MAAM;IAItE,mBAAmB,CACjB,UAAU,EAAE,aAAa,EACzB,QAAQ,EAAE,MAAM,EAChB,MAAM,EAAE,MAAM,GACb,MAAM;IAsBT,SAAS,CAAC,iCAAiC,CACzC,UAAU,EAAE,aAAa,EACzB,QAAQ,EAAE,MAAM,EAChB,MAAM,EAAE,MAAM,GACb,MAAM;IAIT,wBAAwB,CACtB,UAAU,EAAE,aAAa,EACzB,GAAG,EAAE,MAAM,EACX,MAAM,EAAE,cAAc,GACrB,MAAM;IAsBT,SAAS,CAAC,sCAAsC,CAC9C,UAAU,EAAE,aAAa,EACzB,GAAG,EAAE,MAAM,EACX,MAAM,EAAE,cAAc,GACrB,MAAM;CAGV"}