@byteplus/react-native-live-push 1.5.1-rc.2 → 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 (53) hide show
  1. package/ios/VeLiveMixerView.m +5 -15
  2. package/lib/commonjs/typescript/codegen/android/api.d.ts +869 -93
  3. package/lib/commonjs/typescript/codegen/android/callback.d.ts +243 -31
  4. package/lib/commonjs/typescript/codegen/android/errorcode.d.ts +60 -15
  5. package/lib/commonjs/typescript/codegen/android/keytype.d.ts +1173 -219
  6. package/lib/commonjs/typescript/codegen/ios/api.d.ts +899 -102
  7. package/lib/commonjs/typescript/codegen/ios/callback.d.ts +162 -28
  8. package/lib/commonjs/typescript/codegen/ios/errorcode.d.ts +100 -25
  9. package/lib/commonjs/typescript/codegen/ios/keytype.d.ts +692 -180
  10. package/lib/commonjs/typescript/codegen/pack/api.d.ts +1180 -133
  11. package/lib/commonjs/typescript/codegen/pack/callback.d.ts +243 -35
  12. package/lib/commonjs/typescript/codegen/pack/errorcode.d.ts +69 -16
  13. package/lib/commonjs/typescript/codegen/pack/keytype.d.ts +1459 -270
  14. package/lib/commonjs/typescript/core/api.d.ts +8 -1
  15. package/lib/commonjs/typescript/core/effect.d.ts +5 -1
  16. package/lib/commonjs/typescript/core/logger.d.ts +1 -0
  17. package/lib/commonjs/typescript/platforms/android/AppLogWrapper.d.ts +8 -0
  18. package/lib/commonjs/typescript/platforms/ios/RangersAppLog.d.ts +4 -0
  19. package/lib/module/typescript/codegen/android/api.d.ts +869 -93
  20. package/lib/module/typescript/codegen/android/callback.d.ts +243 -31
  21. package/lib/module/typescript/codegen/android/errorcode.d.ts +60 -15
  22. package/lib/module/typescript/codegen/android/keytype.d.ts +1173 -219
  23. package/lib/module/typescript/codegen/ios/api.d.ts +899 -102
  24. package/lib/module/typescript/codegen/ios/callback.d.ts +162 -28
  25. package/lib/module/typescript/codegen/ios/errorcode.d.ts +100 -25
  26. package/lib/module/typescript/codegen/ios/keytype.d.ts +692 -180
  27. package/lib/module/typescript/codegen/pack/api.d.ts +1180 -133
  28. package/lib/module/typescript/codegen/pack/callback.d.ts +243 -35
  29. package/lib/module/typescript/codegen/pack/errorcode.d.ts +69 -16
  30. package/lib/module/typescript/codegen/pack/keytype.d.ts +1459 -270
  31. package/lib/module/typescript/core/api.d.ts +8 -1
  32. package/lib/module/typescript/core/effect.d.ts +5 -1
  33. package/lib/module/typescript/core/logger.d.ts +1 -0
  34. package/lib/module/typescript/platforms/android/AppLogWrapper.d.ts +8 -0
  35. package/lib/module/typescript/platforms/ios/RangersAppLog.d.ts +4 -0
  36. package/lib/typescript/codegen/android/api.d.ts +869 -93
  37. package/lib/typescript/codegen/android/callback.d.ts +243 -31
  38. package/lib/typescript/codegen/android/errorcode.d.ts +60 -15
  39. package/lib/typescript/codegen/android/keytype.d.ts +1173 -219
  40. package/lib/typescript/codegen/ios/api.d.ts +899 -102
  41. package/lib/typescript/codegen/ios/callback.d.ts +162 -28
  42. package/lib/typescript/codegen/ios/errorcode.d.ts +100 -25
  43. package/lib/typescript/codegen/ios/keytype.d.ts +692 -180
  44. package/lib/typescript/codegen/pack/api.d.ts +1180 -133
  45. package/lib/typescript/codegen/pack/callback.d.ts +243 -35
  46. package/lib/typescript/codegen/pack/errorcode.d.ts +69 -16
  47. package/lib/typescript/codegen/pack/keytype.d.ts +1459 -270
  48. package/lib/typescript/core/api.d.ts +8 -1
  49. package/lib/typescript/core/effect.d.ts +5 -1
  50. package/lib/typescript/core/logger.d.ts +1 -0
  51. package/lib/typescript/platforms/android/AppLogWrapper.d.ts +8 -0
  52. package/lib/typescript/platforms/ios/RangersAppLog.d.ts +4 -0
  53. 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.2",
3
+ "version": "1.5.1-rc.3",
4
4
  "peerDependencies": {
5
5
  "react": "*",
6
6
  "react-native": "*"