quickvo-sdk-js 1.6.63 → 1.6.71

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/dist/chunk-C3ZmwZ-K.js +57 -0
  2. package/dist/favicon.svg +1 -0
  3. package/dist/icons.svg +24 -0
  4. package/dist/index.js +25571 -28002
  5. package/dist/index.umd.cjs +4 -3
  6. package/dist/lib-Cen0reYH.js +11194 -0
  7. package/dist/src/QuickVO.d.ts +15 -25
  8. package/dist/src/action/ActionSFU.d.ts +52 -27
  9. package/dist/src/action/Task.d.ts +40 -0
  10. package/dist/src/base/Base.d.ts +5 -1
  11. package/dist/src/base/modules/Config.d.ts +14 -17
  12. package/dist/src/base/modules/Notifys.d.ts +7 -32
  13. package/dist/src/base/modules/Peer.d.ts +17 -7
  14. package/dist/src/base/modules/cws/CallsWebSocket.d.ts +12 -11
  15. package/dist/src/base/modules/cws/CallsWebSocketEvent.d.ts +6 -6
  16. package/dist/src/base/modules/cws/PrWebSocket.d.ts +7 -6
  17. package/dist/src/base/modules/cws/callLogStorage.d.ts +18 -0
  18. package/dist/src/base/modules/cws/quickvoCodecWorkerMain.d.ts +6 -0
  19. package/dist/src/base/modules/notifyPayloadMap.d.ts +119 -0
  20. package/dist/src/base/modules/users/Users.d.ts +58 -40
  21. package/dist/src/base/modules/users/modules/LocalTrackAnalysis.d.ts +6 -2
  22. package/dist/src/base/modules/users/modules/LocalUser.d.ts +8 -1
  23. package/dist/src/base/modules/users/modules/RemotePeerTrackAnalysis.d.ts +5 -1
  24. package/dist/src/base/modules/users/modules/RemoteUser.d.ts +9 -19
  25. package/dist/src/base/modules/users/modules/RemoteUserP2P.d.ts +15 -3
  26. package/dist/src/base/modules/users/modules/UserBase.d.ts +35 -96
  27. package/dist/src/base/modules/users/webrtcRtcStatsByTrack.d.ts +9 -0
  28. package/dist/src/base/modules/webmDurationFixWorkerMain.d.ts +6 -0
  29. package/dist/src/enums/eventName.d.ts +3 -1
  30. package/dist/src/enums/notifyName.d.ts +2 -1
  31. package/dist/src/index.d.ts +5 -0
  32. package/dist/src/protos/gen/modules/BaseData_pb.d.ts +94 -0
  33. package/dist/src/protos/gen/modules/Room_pb.d.ts +2200 -0
  34. package/dist/src/protos/gen/modules/Rtc_pb.d.ts +70 -0
  35. package/dist/src/protos/index.d.ts +4 -1
  36. package/dist/src/protos/protoCodec.d.ts +19 -0
  37. package/dist/src/protos/protoEvent.d.ts +133 -62
  38. package/dist/src/protos/protoPako.d.ts +4 -0
  39. package/dist/src/tools.d.ts +29 -1
  40. package/dist/src/types.d.ts +42 -68
  41. package/dist/src/workers/cwsCodec/CwsCodecCore.d.ts +7 -0
  42. package/dist/src/workers/cwsCodec/CwsCodecWorker.d.ts +15 -0
  43. package/dist/src/workers/cwsCodec/cwsCodec.worker.d.ts +1 -0
  44. package/dist/src/workers/cwsCodec/type.d.ts +33 -0
  45. package/dist/src/workers/webmFix/WebmFixCore.d.ts +3 -0
  46. package/dist/src/workers/webmFix/WebmFixWorker.d.ts +13 -0
  47. package/dist/src/workers/webmFix/type.d.ts +22 -0
  48. package/dist/src/workers/webmFix/webmDurationFixInterop.d.ts +5 -0
  49. package/dist/src/workers/webmFix/webmFix.worker.d.ts +1 -0
  50. package/package.json +9 -6
  51. package/dist/src/action/PublisherController.d.ts +0 -16
  52. package/dist/src/action/subscriberController.d.ts +0 -15
  53. package/dist/src/protos/compiled.d.ts +0 -8254
  54. package/dist/vite.svg +0 -1
@@ -0,0 +1,94 @@
1
+ import { GenFile, GenMessage } from '@bufbuild/protobuf/codegenv2';
2
+ import { Message } from '@bufbuild/protobuf';
3
+ /**
4
+ * Describes the file modules/BaseData.proto.
5
+ */
6
+ export declare const file_modules_BaseData: GenFile;
7
+ /**
8
+ * 请求
9
+ *
10
+ * @generated from message com.quick.voice.proto.CommonReq
11
+ */
12
+ export type CommonReq = Message<"com.quick.voice.proto.CommonReq"> & {
13
+ /**
14
+ * @generated from field: string event = 1;
15
+ */
16
+ event: string;
17
+ /**
18
+ * @generated from field: bytes data = 2;
19
+ */
20
+ data: Uint8Array;
21
+ /**
22
+ * @generated from field: int64 sn = 3;
23
+ */
24
+ sn: bigint;
25
+ /**
26
+ * @generated from field: int64 time = 4;
27
+ */
28
+ time: bigint;
29
+ /**
30
+ * @generated from field: int64 valid = 5;
31
+ */
32
+ valid: bigint;
33
+ /**
34
+ * @generated from field: int32 version = 6;
35
+ */
36
+ version: number;
37
+ /**
38
+ * @generated from field: bool compress = 7;
39
+ */
40
+ compress: boolean;
41
+ };
42
+ /**
43
+ * Describes the message com.quick.voice.proto.CommonReq.
44
+ * Use `create(CommonReqSchema)` to create a new message.
45
+ */
46
+ export declare const CommonReqSchema: GenMessage<CommonReq>;
47
+ /**
48
+ * 响应|通知
49
+ *
50
+ * @generated from message com.quick.voice.proto.CommonRsp
51
+ */
52
+ export type CommonRsp = Message<"com.quick.voice.proto.CommonRsp"> & {
53
+ /**
54
+ * @generated from field: string event = 1;
55
+ */
56
+ event: string;
57
+ /**
58
+ * @generated from field: bytes data = 2;
59
+ */
60
+ data: Uint8Array;
61
+ /**
62
+ * @generated from field: int64 sn = 3;
63
+ */
64
+ sn: bigint;
65
+ /**
66
+ * @generated from field: int64 time = 4;
67
+ */
68
+ time: bigint;
69
+ /**
70
+ * @generated from field: int64 valid = 5;
71
+ */
72
+ valid: bigint;
73
+ /**
74
+ * @generated from field: int32 code = 6;
75
+ */
76
+ code: number;
77
+ /**
78
+ * @generated from field: string desc = 7;
79
+ */
80
+ desc: string;
81
+ /**
82
+ * @generated from field: int32 version = 8;
83
+ */
84
+ version: number;
85
+ /**
86
+ * @generated from field: bool compress = 9;
87
+ */
88
+ compress: boolean;
89
+ };
90
+ /**
91
+ * Describes the message com.quick.voice.proto.CommonRsp.
92
+ * Use `create(CommonRspSchema)` to create a new message.
93
+ */
94
+ export declare const CommonRspSchema: GenMessage<CommonRsp>;