@byteplus/react-native-live-push 1.5.1-rc.3 → 1.5.2-rc.0

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 (54) hide show
  1. package/lib/commonjs/index.js +2 -2
  2. package/lib/commonjs/typescript/codegen/android/api.d.ts +93 -869
  3. package/lib/commonjs/typescript/codegen/android/callback.d.ts +31 -243
  4. package/lib/commonjs/typescript/codegen/android/errorcode.d.ts +15 -60
  5. package/lib/commonjs/typescript/codegen/android/keytype.d.ts +219 -1173
  6. package/lib/commonjs/typescript/codegen/ios/api.d.ts +102 -899
  7. package/lib/commonjs/typescript/codegen/ios/callback.d.ts +28 -162
  8. package/lib/commonjs/typescript/codegen/ios/errorcode.d.ts +25 -100
  9. package/lib/commonjs/typescript/codegen/ios/keytype.d.ts +180 -692
  10. package/lib/commonjs/typescript/codegen/pack/api.d.ts +133 -1180
  11. package/lib/commonjs/typescript/codegen/pack/callback.d.ts +35 -243
  12. package/lib/commonjs/typescript/codegen/pack/errorcode.d.ts +16 -69
  13. package/lib/commonjs/typescript/codegen/pack/keytype.d.ts +271 -1460
  14. package/lib/commonjs/typescript/core/api.d.ts +1 -8
  15. package/lib/commonjs/typescript/core/effect.d.ts +1 -5
  16. package/lib/module/index.js +2 -2
  17. package/lib/module/typescript/codegen/android/api.d.ts +93 -869
  18. package/lib/module/typescript/codegen/android/callback.d.ts +31 -243
  19. package/lib/module/typescript/codegen/android/errorcode.d.ts +15 -60
  20. package/lib/module/typescript/codegen/android/keytype.d.ts +219 -1173
  21. package/lib/module/typescript/codegen/ios/api.d.ts +102 -899
  22. package/lib/module/typescript/codegen/ios/callback.d.ts +28 -162
  23. package/lib/module/typescript/codegen/ios/errorcode.d.ts +25 -100
  24. package/lib/module/typescript/codegen/ios/keytype.d.ts +180 -692
  25. package/lib/module/typescript/codegen/pack/api.d.ts +133 -1180
  26. package/lib/module/typescript/codegen/pack/callback.d.ts +35 -243
  27. package/lib/module/typescript/codegen/pack/errorcode.d.ts +16 -69
  28. package/lib/module/typescript/codegen/pack/keytype.d.ts +271 -1460
  29. package/lib/module/typescript/core/api.d.ts +1 -8
  30. package/lib/module/typescript/core/effect.d.ts +1 -5
  31. package/lib/typescript/codegen/android/api.d.ts +93 -869
  32. package/lib/typescript/codegen/android/callback.d.ts +31 -243
  33. package/lib/typescript/codegen/android/errorcode.d.ts +15 -60
  34. package/lib/typescript/codegen/android/keytype.d.ts +219 -1173
  35. package/lib/typescript/codegen/ios/api.d.ts +102 -899
  36. package/lib/typescript/codegen/ios/callback.d.ts +28 -162
  37. package/lib/typescript/codegen/ios/errorcode.d.ts +25 -100
  38. package/lib/typescript/codegen/ios/keytype.d.ts +180 -692
  39. package/lib/typescript/codegen/pack/api.d.ts +133 -1180
  40. package/lib/typescript/codegen/pack/callback.d.ts +35 -243
  41. package/lib/typescript/codegen/pack/errorcode.d.ts +16 -69
  42. package/lib/typescript/codegen/pack/keytype.d.ts +271 -1460
  43. package/lib/typescript/core/api.d.ts +1 -8
  44. package/lib/typescript/core/effect.d.ts +1 -5
  45. package/package.json +1 -1
  46. package/lib/commonjs/typescript/core/logger.d.ts +0 -1
  47. package/lib/commonjs/typescript/platforms/android/AppLogWrapper.d.ts +0 -8
  48. package/lib/commonjs/typescript/platforms/ios/RangersAppLog.d.ts +0 -4
  49. package/lib/module/typescript/core/logger.d.ts +0 -1
  50. package/lib/module/typescript/platforms/android/AppLogWrapper.d.ts +0 -8
  51. package/lib/module/typescript/platforms/ios/RangersAppLog.d.ts +0 -4
  52. package/lib/typescript/core/logger.d.ts +0 -1
  53. package/lib/typescript/platforms/android/AppLogWrapper.d.ts +0 -8
  54. package/lib/typescript/platforms/ios/RangersAppLog.d.ts +0 -4
@@ -3,14 +3,7 @@ import { VeLiveAudioFrame, VeLiveVideoFrame } from '../codegen/pack';
3
3
  import { VeLiveMixerManager } from './mixer';
4
4
  declare module '../codegen/pack/api' {
5
5
  interface VeLivePusher {
6
- /** {zh}
7
- * @detail api
8
- * @brief 获取混流管理对象。
9
- * @return <br>
10
- * 混流管理对象 VeLiveMixerManager{@link #VeLiveMixerManager}。
11
- * @order 51
12
- *
13
- */
6
+
14
7
  /** {en}
15
8
  * @detail api
16
9
  * @brief Gets the audio and video mixer.
@@ -1,10 +1,6 @@
1
1
  declare module '../codegen/pack/api' {
2
2
  interface VeLivePusher {
3
- /** {zh}
4
- * @detail api
5
- * @brief 设置美颜SDK管理器
6
- * @param licenseFileName 美颜SDK License 文件名
7
- */
3
+
8
4
  /** {en}
9
5
  * @detail api
10
6
  * @brief Set the beauty SDK manager
@@ -26825,7 +26825,7 @@ function initAndroidEnv(config) {
26825
26825
  .setLicenseUri(config.LicenseUri.android);
26826
26826
  androidEnv = builder.build();
26827
26827
  EnvHelper.init(androidEnv, {
26828
- hybrid_ua: "rn|push|".concat("1.5.0"),
26828
+ hybrid_ua: "rn|push|".concat("1.5.1"),
26829
26829
  });
26830
26830
  Env.openAppLog(config.openLog);
26831
26831
  TTNetManager.initTTNet(context);
@@ -26837,7 +26837,7 @@ function initAndroidEnv(config) {
26837
26837
  function initIOSEnv(config) {
26838
26838
  return __awaiter(this, void 0, void 0, function () {
26839
26839
  return __generator(this, function (_a) {
26840
- VeLivePushHelper.startWithConfiguration(__assign(__assign({}, config), { LicenseUri: config.LicenseUri.ios, appLogAid: '500808' , hybrid_ua: "rn|push|".concat("1.5.0") }));
26840
+ VeLivePushHelper.startWithConfiguration(__assign(__assign({}, config), { LicenseUri: config.LicenseUri.ios, appLogAid: '500808' , hybrid_ua: "rn|push|".concat("1.5.1") }));
26841
26841
  return [2 /*return*/];
26842
26842
  });
26843
26843
  });