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

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/ios/RCTVeLivePush/RCTVeLivePush.mm +1 -1
  2. package/ios/VeLiveMixerView.m +5 -15
  3. package/lib/commonjs/typescript/codegen/android/api.d.ts +869 -93
  4. package/lib/commonjs/typescript/codegen/android/callback.d.ts +243 -31
  5. package/lib/commonjs/typescript/codegen/android/errorcode.d.ts +60 -15
  6. package/lib/commonjs/typescript/codegen/android/keytype.d.ts +1173 -219
  7. package/lib/commonjs/typescript/codegen/ios/api.d.ts +899 -102
  8. package/lib/commonjs/typescript/codegen/ios/callback.d.ts +162 -28
  9. package/lib/commonjs/typescript/codegen/ios/errorcode.d.ts +100 -25
  10. package/lib/commonjs/typescript/codegen/ios/keytype.d.ts +692 -180
  11. package/lib/commonjs/typescript/codegen/pack/api.d.ts +1180 -133
  12. package/lib/commonjs/typescript/codegen/pack/callback.d.ts +243 -35
  13. package/lib/commonjs/typescript/codegen/pack/errorcode.d.ts +69 -16
  14. package/lib/commonjs/typescript/codegen/pack/keytype.d.ts +1459 -270
  15. package/lib/commonjs/typescript/core/api.d.ts +8 -1
  16. package/lib/commonjs/typescript/core/effect.d.ts +5 -1
  17. package/lib/commonjs/typescript/core/logger.d.ts +1 -0
  18. package/lib/commonjs/typescript/platforms/android/AppLogWrapper.d.ts +8 -0
  19. package/lib/commonjs/typescript/platforms/ios/RangersAppLog.d.ts +4 -0
  20. package/lib/module/typescript/codegen/android/api.d.ts +869 -93
  21. package/lib/module/typescript/codegen/android/callback.d.ts +243 -31
  22. package/lib/module/typescript/codegen/android/errorcode.d.ts +60 -15
  23. package/lib/module/typescript/codegen/android/keytype.d.ts +1173 -219
  24. package/lib/module/typescript/codegen/ios/api.d.ts +899 -102
  25. package/lib/module/typescript/codegen/ios/callback.d.ts +162 -28
  26. package/lib/module/typescript/codegen/ios/errorcode.d.ts +100 -25
  27. package/lib/module/typescript/codegen/ios/keytype.d.ts +692 -180
  28. package/lib/module/typescript/codegen/pack/api.d.ts +1180 -133
  29. package/lib/module/typescript/codegen/pack/callback.d.ts +243 -35
  30. package/lib/module/typescript/codegen/pack/errorcode.d.ts +69 -16
  31. package/lib/module/typescript/codegen/pack/keytype.d.ts +1459 -270
  32. package/lib/module/typescript/core/api.d.ts +8 -1
  33. package/lib/module/typescript/core/effect.d.ts +5 -1
  34. package/lib/module/typescript/core/logger.d.ts +1 -0
  35. package/lib/module/typescript/platforms/android/AppLogWrapper.d.ts +8 -0
  36. package/lib/module/typescript/platforms/ios/RangersAppLog.d.ts +4 -0
  37. package/lib/typescript/codegen/android/api.d.ts +869 -93
  38. package/lib/typescript/codegen/android/callback.d.ts +243 -31
  39. package/lib/typescript/codegen/android/errorcode.d.ts +60 -15
  40. package/lib/typescript/codegen/android/keytype.d.ts +1173 -219
  41. package/lib/typescript/codegen/ios/api.d.ts +899 -102
  42. package/lib/typescript/codegen/ios/callback.d.ts +162 -28
  43. package/lib/typescript/codegen/ios/errorcode.d.ts +100 -25
  44. package/lib/typescript/codegen/ios/keytype.d.ts +692 -180
  45. package/lib/typescript/codegen/pack/api.d.ts +1180 -133
  46. package/lib/typescript/codegen/pack/callback.d.ts +243 -35
  47. package/lib/typescript/codegen/pack/errorcode.d.ts +69 -16
  48. package/lib/typescript/codegen/pack/keytype.d.ts +1459 -270
  49. package/lib/typescript/core/api.d.ts +8 -1
  50. package/lib/typescript/core/effect.d.ts +5 -1
  51. package/lib/typescript/core/logger.d.ts +1 -0
  52. package/lib/typescript/platforms/android/AppLogWrapper.d.ts +8 -0
  53. package/lib/typescript/platforms/ios/RangersAppLog.d.ts +4 -0
  54. package/package.json +1 -1
@@ -3,7 +3,14 @@ import { VeLiveAudioFrame, VeLiveVideoFrame } from '../codegen/pack';
3
3
  import { VeLiveMixerManager } from './mixer';
4
4
  declare module '../codegen/pack/api' {
5
5
  interface VeLivePusher {
6
-
6
+ /** {zh}
7
+ * @detail api
8
+ * @brief 获取混流管理对象。
9
+ * @return <br>
10
+ * 混流管理对象 VeLiveMixerManager{@link #VeLiveMixerManager}。
11
+ * @order 51
12
+ *
13
+ */
7
14
  /** {en}
8
15
  * @detail api
9
16
  * @brief Gets the audio and video mixer.
@@ -1,6 +1,10 @@
1
1
  declare module '../codegen/pack/api' {
2
2
  interface VeLivePusher {
3
-
3
+ /** {zh}
4
+ * @detail api
5
+ * @brief 设置美颜SDK管理器
6
+ * @param licenseFileName 美颜SDK License 文件名
7
+ */
4
8
  /** {en}
5
9
  * @detail api
6
10
  * @brief Set the beauty SDK manager
@@ -0,0 +1 @@
1
+ export declare function setApplogHeader(headers: Record<string, string>, appId?: string): void;
@@ -0,0 +1,8 @@
1
+ import type { HashMap } from '../../codegen/android';
2
+ export declare class AppLogWrapper {
3
+ static getAppLogInstance(): IAppLogInstance;
4
+ }
5
+ export declare class IAppLogInstance {
6
+ setHeaderInfo(headers: HashMap): void;
7
+ setUserUniqueID(id: string): void;
8
+ }
@@ -0,0 +1,4 @@
1
+ export declare class BDAutoTrack {
2
+ static trackWithAppID(appId: string): BDAutoTrack;
3
+ setCustomHeaderValue(value: string, forKey: string): void;
4
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byteplus/react-native-live-push",
3
- "version": "1.5.1-rc.1",
3
+ "version": "1.5.1-rc.3",
4
4
  "peerDependencies": {
5
5
  "react": "*",
6
6
  "react-native": "*"