quickvo-sdk-js 1.5.7 → 1.5.10
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.
- package/dist/enums/eventName.d.ts +1 -1
- package/dist/enums/notifyName.d.ts +2 -2
- package/dist/index.js +20956 -21242
- package/dist/index.umd.cjs +3 -3
- package/dist/protos/compiled.d.ts +398 -578
- package/dist/room/P2P.d.ts +4 -0
- package/dist/room/RoomBase.d.ts +6 -0
- package/dist/room/RoomCalls.d.ts +9 -3
- package/dist/room/RoomUsers.d.ts +4 -1
- package/dist/types.d.ts +19 -2
- package/package.json +1 -1
|
@@ -960,6 +960,12 @@ export namespace com {
|
|
|
960
960
|
|
|
961
961
|
/** JoinReq token */
|
|
962
962
|
token?: (string|null);
|
|
963
|
+
|
|
964
|
+
/** JoinReq lang */
|
|
965
|
+
lang?: (com.quick.voice.proto.IAiLangSetting|null);
|
|
966
|
+
|
|
967
|
+
/** JoinReq stt */
|
|
968
|
+
stt?: (boolean|null);
|
|
963
969
|
}
|
|
964
970
|
|
|
965
971
|
/** Represents a JoinReq. */
|
|
@@ -983,9 +989,21 @@ export namespace com {
|
|
|
983
989
|
/** JoinReq token. */
|
|
984
990
|
public token?: (string|null);
|
|
985
991
|
|
|
992
|
+
/** JoinReq lang. */
|
|
993
|
+
public lang?: (com.quick.voice.proto.IAiLangSetting|null);
|
|
994
|
+
|
|
995
|
+
/** JoinReq stt. */
|
|
996
|
+
public stt?: (boolean|null);
|
|
997
|
+
|
|
986
998
|
/** JoinReq _token. */
|
|
987
999
|
public _token?: "token";
|
|
988
1000
|
|
|
1001
|
+
/** JoinReq _lang. */
|
|
1002
|
+
public _lang?: "lang";
|
|
1003
|
+
|
|
1004
|
+
/** JoinReq _stt. */
|
|
1005
|
+
public _stt?: "stt";
|
|
1006
|
+
|
|
989
1007
|
/**
|
|
990
1008
|
* Creates a new JoinReq instance using the specified properties.
|
|
991
1009
|
* @param [properties] Properties to set
|
|
@@ -1075,6 +1093,9 @@ export namespace com {
|
|
|
1075
1093
|
|
|
1076
1094
|
/** JoinRsp callType */
|
|
1077
1095
|
callType?: (com.quick.voice.proto.CallType|null);
|
|
1096
|
+
|
|
1097
|
+
/** JoinRsp wifiOnly */
|
|
1098
|
+
wifiOnly?: (boolean|null);
|
|
1078
1099
|
}
|
|
1079
1100
|
|
|
1080
1101
|
/** Represents a JoinRsp. */
|
|
@@ -1095,6 +1116,9 @@ export namespace com {
|
|
|
1095
1116
|
/** JoinRsp callType. */
|
|
1096
1117
|
public callType: com.quick.voice.proto.CallType;
|
|
1097
1118
|
|
|
1119
|
+
/** JoinRsp wifiOnly. */
|
|
1120
|
+
public wifiOnly: boolean;
|
|
1121
|
+
|
|
1098
1122
|
/**
|
|
1099
1123
|
* Creates a new JoinRsp instance using the specified properties.
|
|
1100
1124
|
* @param [properties] Properties to set
|
|
@@ -5729,1130 +5753,926 @@ export namespace com {
|
|
|
5729
5753
|
Failed = 1,
|
|
5730
5754
|
Ignore = 2,
|
|
5731
5755
|
Disconnected = 3,
|
|
5732
|
-
LowQuality = 4
|
|
5733
|
-
ReConnect = 5
|
|
5756
|
+
LowQuality = 4
|
|
5734
5757
|
}
|
|
5735
5758
|
|
|
5736
|
-
/** Properties of a
|
|
5737
|
-
interface
|
|
5738
|
-
|
|
5739
|
-
/** ReportP2PReq code */
|
|
5740
|
-
code?: (com.quick.voice.proto.P2PCode|null);
|
|
5741
|
-
|
|
5742
|
-
/** ReportP2PReq userId */
|
|
5743
|
-
userId?: (string|null);
|
|
5759
|
+
/** Properties of a ReportTrafficUsage. */
|
|
5760
|
+
interface IReportTrafficUsage {
|
|
5744
5761
|
|
|
5745
|
-
/**
|
|
5746
|
-
|
|
5762
|
+
/** ReportTrafficUsage p2pPush */
|
|
5763
|
+
p2pPush?: (number|Long|null);
|
|
5747
5764
|
|
|
5748
|
-
/**
|
|
5749
|
-
|
|
5765
|
+
/** ReportTrafficUsage p2pPull */
|
|
5766
|
+
p2pPull?: (number|Long|null);
|
|
5750
5767
|
|
|
5751
|
-
/**
|
|
5752
|
-
|
|
5768
|
+
/** ReportTrafficUsage sfuPush */
|
|
5769
|
+
sfuPush?: (number|Long|null);
|
|
5753
5770
|
|
|
5754
|
-
/**
|
|
5755
|
-
|
|
5771
|
+
/** ReportTrafficUsage sfuPull */
|
|
5772
|
+
sfuPull?: (number|Long|null);
|
|
5756
5773
|
}
|
|
5757
5774
|
|
|
5758
|
-
/** Represents a
|
|
5759
|
-
class
|
|
5775
|
+
/** Represents a ReportTrafficUsage. */
|
|
5776
|
+
class ReportTrafficUsage implements IReportTrafficUsage {
|
|
5760
5777
|
|
|
5761
5778
|
/**
|
|
5762
|
-
* Constructs a new
|
|
5779
|
+
* Constructs a new ReportTrafficUsage.
|
|
5763
5780
|
* @param [properties] Properties to set
|
|
5764
5781
|
*/
|
|
5765
|
-
constructor(properties?: com.quick.voice.proto.
|
|
5782
|
+
constructor(properties?: com.quick.voice.proto.IReportTrafficUsage);
|
|
5766
5783
|
|
|
5767
|
-
/**
|
|
5768
|
-
public
|
|
5784
|
+
/** ReportTrafficUsage p2pPush. */
|
|
5785
|
+
public p2pPush?: (number|Long|null);
|
|
5769
5786
|
|
|
5770
|
-
/**
|
|
5771
|
-
public
|
|
5787
|
+
/** ReportTrafficUsage p2pPull. */
|
|
5788
|
+
public p2pPull?: (number|Long|null);
|
|
5772
5789
|
|
|
5773
|
-
/**
|
|
5774
|
-
public
|
|
5790
|
+
/** ReportTrafficUsage sfuPush. */
|
|
5791
|
+
public sfuPush?: (number|Long|null);
|
|
5775
5792
|
|
|
5776
|
-
/**
|
|
5777
|
-
public
|
|
5793
|
+
/** ReportTrafficUsage sfuPull. */
|
|
5794
|
+
public sfuPull?: (number|Long|null);
|
|
5778
5795
|
|
|
5779
|
-
/**
|
|
5780
|
-
public
|
|
5796
|
+
/** ReportTrafficUsage _p2pPush. */
|
|
5797
|
+
public _p2pPush?: "p2pPush";
|
|
5781
5798
|
|
|
5782
|
-
/**
|
|
5783
|
-
public
|
|
5799
|
+
/** ReportTrafficUsage _p2pPull. */
|
|
5800
|
+
public _p2pPull?: "p2pPull";
|
|
5784
5801
|
|
|
5785
|
-
/**
|
|
5786
|
-
public
|
|
5802
|
+
/** ReportTrafficUsage _sfuPush. */
|
|
5803
|
+
public _sfuPush?: "sfuPush";
|
|
5787
5804
|
|
|
5788
|
-
/**
|
|
5789
|
-
public
|
|
5805
|
+
/** ReportTrafficUsage _sfuPull. */
|
|
5806
|
+
public _sfuPull?: "sfuPull";
|
|
5790
5807
|
|
|
5791
5808
|
/**
|
|
5792
|
-
* Creates a new
|
|
5809
|
+
* Creates a new ReportTrafficUsage instance using the specified properties.
|
|
5793
5810
|
* @param [properties] Properties to set
|
|
5794
|
-
* @returns
|
|
5811
|
+
* @returns ReportTrafficUsage instance
|
|
5795
5812
|
*/
|
|
5796
|
-
public static create(properties?: com.quick.voice.proto.
|
|
5813
|
+
public static create(properties?: com.quick.voice.proto.IReportTrafficUsage): com.quick.voice.proto.ReportTrafficUsage;
|
|
5797
5814
|
|
|
5798
5815
|
/**
|
|
5799
|
-
* Encodes the specified
|
|
5800
|
-
* @param message
|
|
5816
|
+
* Encodes the specified ReportTrafficUsage message. Does not implicitly {@link com.quick.voice.proto.ReportTrafficUsage.verify|verify} messages.
|
|
5817
|
+
* @param message ReportTrafficUsage message or plain object to encode
|
|
5801
5818
|
* @param [writer] Writer to encode to
|
|
5802
5819
|
* @returns Writer
|
|
5803
5820
|
*/
|
|
5804
|
-
public static encode(message: com.quick.voice.proto.
|
|
5821
|
+
public static encode(message: com.quick.voice.proto.IReportTrafficUsage, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
5805
5822
|
|
|
5806
5823
|
/**
|
|
5807
|
-
* Encodes the specified
|
|
5808
|
-
* @param message
|
|
5824
|
+
* Encodes the specified ReportTrafficUsage message, length delimited. Does not implicitly {@link com.quick.voice.proto.ReportTrafficUsage.verify|verify} messages.
|
|
5825
|
+
* @param message ReportTrafficUsage message or plain object to encode
|
|
5809
5826
|
* @param [writer] Writer to encode to
|
|
5810
5827
|
* @returns Writer
|
|
5811
5828
|
*/
|
|
5812
|
-
public static encodeDelimited(message: com.quick.voice.proto.
|
|
5829
|
+
public static encodeDelimited(message: com.quick.voice.proto.IReportTrafficUsage, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
5813
5830
|
|
|
5814
5831
|
/**
|
|
5815
|
-
* Decodes a
|
|
5832
|
+
* Decodes a ReportTrafficUsage message from the specified reader or buffer.
|
|
5816
5833
|
* @param reader Reader or buffer to decode from
|
|
5817
5834
|
* @param [length] Message length if known beforehand
|
|
5818
|
-
* @returns
|
|
5835
|
+
* @returns ReportTrafficUsage
|
|
5819
5836
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
5820
5837
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
5821
5838
|
*/
|
|
5822
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): com.quick.voice.proto.
|
|
5839
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): com.quick.voice.proto.ReportTrafficUsage;
|
|
5823
5840
|
|
|
5824
5841
|
/**
|
|
5825
|
-
* Decodes a
|
|
5842
|
+
* Decodes a ReportTrafficUsage message from the specified reader or buffer, length delimited.
|
|
5826
5843
|
* @param reader Reader or buffer to decode from
|
|
5827
|
-
* @returns
|
|
5844
|
+
* @returns ReportTrafficUsage
|
|
5828
5845
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
5829
5846
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
5830
5847
|
*/
|
|
5831
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): com.quick.voice.proto.
|
|
5848
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): com.quick.voice.proto.ReportTrafficUsage;
|
|
5832
5849
|
|
|
5833
5850
|
/**
|
|
5834
|
-
* Verifies a
|
|
5851
|
+
* Verifies a ReportTrafficUsage message.
|
|
5835
5852
|
* @param message Plain object to verify
|
|
5836
5853
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
5837
5854
|
*/
|
|
5838
5855
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
5839
5856
|
|
|
5840
5857
|
/**
|
|
5841
|
-
* Creates a
|
|
5858
|
+
* Creates a ReportTrafficUsage message from a plain object. Also converts values to their respective internal types.
|
|
5842
5859
|
* @param object Plain object
|
|
5843
|
-
* @returns
|
|
5860
|
+
* @returns ReportTrafficUsage
|
|
5844
5861
|
*/
|
|
5845
|
-
public static fromObject(object: { [k: string]: any }): com.quick.voice.proto.
|
|
5862
|
+
public static fromObject(object: { [k: string]: any }): com.quick.voice.proto.ReportTrafficUsage;
|
|
5846
5863
|
|
|
5847
5864
|
/**
|
|
5848
|
-
* Creates a plain object from a
|
|
5849
|
-
* @param message
|
|
5865
|
+
* Creates a plain object from a ReportTrafficUsage message. Also converts values to other types if specified.
|
|
5866
|
+
* @param message ReportTrafficUsage
|
|
5850
5867
|
* @param [options] Conversion options
|
|
5851
5868
|
* @returns Plain object
|
|
5852
5869
|
*/
|
|
5853
|
-
public static toObject(message: com.quick.voice.proto.
|
|
5870
|
+
public static toObject(message: com.quick.voice.proto.ReportTrafficUsage, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
5854
5871
|
|
|
5855
5872
|
/**
|
|
5856
|
-
* Converts this
|
|
5873
|
+
* Converts this ReportTrafficUsage to JSON.
|
|
5857
5874
|
* @returns JSON object
|
|
5858
5875
|
*/
|
|
5859
5876
|
public toJSON(): { [k: string]: any };
|
|
5860
5877
|
|
|
5861
5878
|
/**
|
|
5862
|
-
* Gets the default type url for
|
|
5879
|
+
* Gets the default type url for ReportTrafficUsage
|
|
5863
5880
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
5864
5881
|
* @returns The default type url
|
|
5865
5882
|
*/
|
|
5866
5883
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
5867
5884
|
}
|
|
5868
5885
|
|
|
5869
|
-
/** Properties of a
|
|
5870
|
-
interface
|
|
5871
|
-
|
|
5872
|
-
/** ReportP2PConnectExReq code */
|
|
5873
|
-
code?: (com.quick.voice.proto.P2PCode|null);
|
|
5874
|
-
|
|
5875
|
-
/** ReportP2PConnectExReq pushUserIds */
|
|
5876
|
-
pushUserIds?: (string[]|null);
|
|
5877
|
-
|
|
5878
|
-
/** ReportP2PConnectExReq pullPeerId */
|
|
5879
|
-
pullPeerId?: (string|null);
|
|
5880
|
-
|
|
5881
|
-
/** ReportP2PConnectExReq pushPeerId */
|
|
5882
|
-
pushPeerId?: (string|null);
|
|
5886
|
+
/** Properties of a CheckSessionReq. */
|
|
5887
|
+
interface ICheckSessionReq {
|
|
5883
5888
|
|
|
5884
|
-
/**
|
|
5885
|
-
|
|
5889
|
+
/** CheckSessionReq session */
|
|
5890
|
+
session?: (string|null);
|
|
5886
5891
|
|
|
5887
|
-
/**
|
|
5888
|
-
|
|
5892
|
+
/** CheckSessionReq tracks */
|
|
5893
|
+
tracks?: (com.quick.voice.proto.ITrack[]|null);
|
|
5889
5894
|
}
|
|
5890
5895
|
|
|
5891
|
-
/** Represents a
|
|
5892
|
-
class
|
|
5896
|
+
/** Represents a CheckSessionReq. */
|
|
5897
|
+
class CheckSessionReq implements ICheckSessionReq {
|
|
5893
5898
|
|
|
5894
5899
|
/**
|
|
5895
|
-
* Constructs a new
|
|
5900
|
+
* Constructs a new CheckSessionReq.
|
|
5896
5901
|
* @param [properties] Properties to set
|
|
5897
5902
|
*/
|
|
5898
|
-
constructor(properties?: com.quick.voice.proto.
|
|
5899
|
-
|
|
5900
|
-
/** ReportP2PConnectExReq code. */
|
|
5901
|
-
public code: com.quick.voice.proto.P2PCode;
|
|
5902
|
-
|
|
5903
|
-
/** ReportP2PConnectExReq pushUserIds. */
|
|
5904
|
-
public pushUserIds: string[];
|
|
5905
|
-
|
|
5906
|
-
/** ReportP2PConnectExReq pullPeerId. */
|
|
5907
|
-
public pullPeerId: string;
|
|
5908
|
-
|
|
5909
|
-
/** ReportP2PConnectExReq pushPeerId. */
|
|
5910
|
-
public pushPeerId: string;
|
|
5911
|
-
|
|
5912
|
-
/** ReportP2PConnectExReq connectedTime. */
|
|
5913
|
-
public connectedTime?: (string|null);
|
|
5914
|
-
|
|
5915
|
-
/** ReportP2PConnectExReq reason. */
|
|
5916
|
-
public reason?: (string|null);
|
|
5903
|
+
constructor(properties?: com.quick.voice.proto.ICheckSessionReq);
|
|
5917
5904
|
|
|
5918
|
-
/**
|
|
5919
|
-
public
|
|
5905
|
+
/** CheckSessionReq session. */
|
|
5906
|
+
public session: string;
|
|
5920
5907
|
|
|
5921
|
-
/**
|
|
5922
|
-
public
|
|
5908
|
+
/** CheckSessionReq tracks. */
|
|
5909
|
+
public tracks: com.quick.voice.proto.ITrack[];
|
|
5923
5910
|
|
|
5924
5911
|
/**
|
|
5925
|
-
* Creates a new
|
|
5912
|
+
* Creates a new CheckSessionReq instance using the specified properties.
|
|
5926
5913
|
* @param [properties] Properties to set
|
|
5927
|
-
* @returns
|
|
5914
|
+
* @returns CheckSessionReq instance
|
|
5928
5915
|
*/
|
|
5929
|
-
public static create(properties?: com.quick.voice.proto.
|
|
5916
|
+
public static create(properties?: com.quick.voice.proto.ICheckSessionReq): com.quick.voice.proto.CheckSessionReq;
|
|
5930
5917
|
|
|
5931
5918
|
/**
|
|
5932
|
-
* Encodes the specified
|
|
5933
|
-
* @param message
|
|
5919
|
+
* Encodes the specified CheckSessionReq message. Does not implicitly {@link com.quick.voice.proto.CheckSessionReq.verify|verify} messages.
|
|
5920
|
+
* @param message CheckSessionReq message or plain object to encode
|
|
5934
5921
|
* @param [writer] Writer to encode to
|
|
5935
5922
|
* @returns Writer
|
|
5936
5923
|
*/
|
|
5937
|
-
public static encode(message: com.quick.voice.proto.
|
|
5924
|
+
public static encode(message: com.quick.voice.proto.ICheckSessionReq, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
5938
5925
|
|
|
5939
5926
|
/**
|
|
5940
|
-
* Encodes the specified
|
|
5941
|
-
* @param message
|
|
5927
|
+
* Encodes the specified CheckSessionReq message, length delimited. Does not implicitly {@link com.quick.voice.proto.CheckSessionReq.verify|verify} messages.
|
|
5928
|
+
* @param message CheckSessionReq message or plain object to encode
|
|
5942
5929
|
* @param [writer] Writer to encode to
|
|
5943
5930
|
* @returns Writer
|
|
5944
5931
|
*/
|
|
5945
|
-
public static encodeDelimited(message: com.quick.voice.proto.
|
|
5932
|
+
public static encodeDelimited(message: com.quick.voice.proto.ICheckSessionReq, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
5946
5933
|
|
|
5947
5934
|
/**
|
|
5948
|
-
* Decodes a
|
|
5935
|
+
* Decodes a CheckSessionReq message from the specified reader or buffer.
|
|
5949
5936
|
* @param reader Reader or buffer to decode from
|
|
5950
5937
|
* @param [length] Message length if known beforehand
|
|
5951
|
-
* @returns
|
|
5938
|
+
* @returns CheckSessionReq
|
|
5952
5939
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
5953
5940
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
5954
5941
|
*/
|
|
5955
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): com.quick.voice.proto.
|
|
5942
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): com.quick.voice.proto.CheckSessionReq;
|
|
5956
5943
|
|
|
5957
5944
|
/**
|
|
5958
|
-
* Decodes a
|
|
5945
|
+
* Decodes a CheckSessionReq message from the specified reader or buffer, length delimited.
|
|
5959
5946
|
* @param reader Reader or buffer to decode from
|
|
5960
|
-
* @returns
|
|
5947
|
+
* @returns CheckSessionReq
|
|
5961
5948
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
5962
5949
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
5963
5950
|
*/
|
|
5964
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): com.quick.voice.proto.
|
|
5951
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): com.quick.voice.proto.CheckSessionReq;
|
|
5965
5952
|
|
|
5966
5953
|
/**
|
|
5967
|
-
* Verifies a
|
|
5954
|
+
* Verifies a CheckSessionReq message.
|
|
5968
5955
|
* @param message Plain object to verify
|
|
5969
5956
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
5970
5957
|
*/
|
|
5971
5958
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
5972
5959
|
|
|
5973
5960
|
/**
|
|
5974
|
-
* Creates a
|
|
5961
|
+
* Creates a CheckSessionReq message from a plain object. Also converts values to their respective internal types.
|
|
5975
5962
|
* @param object Plain object
|
|
5976
|
-
* @returns
|
|
5963
|
+
* @returns CheckSessionReq
|
|
5977
5964
|
*/
|
|
5978
|
-
public static fromObject(object: { [k: string]: any }): com.quick.voice.proto.
|
|
5965
|
+
public static fromObject(object: { [k: string]: any }): com.quick.voice.proto.CheckSessionReq;
|
|
5979
5966
|
|
|
5980
5967
|
/**
|
|
5981
|
-
* Creates a plain object from a
|
|
5982
|
-
* @param message
|
|
5968
|
+
* Creates a plain object from a CheckSessionReq message. Also converts values to other types if specified.
|
|
5969
|
+
* @param message CheckSessionReq
|
|
5983
5970
|
* @param [options] Conversion options
|
|
5984
5971
|
* @returns Plain object
|
|
5985
5972
|
*/
|
|
5986
|
-
public static toObject(message: com.quick.voice.proto.
|
|
5973
|
+
public static toObject(message: com.quick.voice.proto.CheckSessionReq, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
5987
5974
|
|
|
5988
5975
|
/**
|
|
5989
|
-
* Converts this
|
|
5976
|
+
* Converts this CheckSessionReq to JSON.
|
|
5990
5977
|
* @returns JSON object
|
|
5991
5978
|
*/
|
|
5992
5979
|
public toJSON(): { [k: string]: any };
|
|
5993
5980
|
|
|
5994
5981
|
/**
|
|
5995
|
-
* Gets the default type url for
|
|
5982
|
+
* Gets the default type url for CheckSessionReq
|
|
5996
5983
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
5997
5984
|
* @returns The default type url
|
|
5998
5985
|
*/
|
|
5999
5986
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6000
5987
|
}
|
|
6001
5988
|
|
|
6002
|
-
/** Properties of a
|
|
6003
|
-
interface
|
|
5989
|
+
/** Properties of a CheckSessionRsq. */
|
|
5990
|
+
interface ICheckSessionRsq {
|
|
6004
5991
|
|
|
6005
|
-
/**
|
|
6006
|
-
|
|
5992
|
+
/** CheckSessionRsq sessionIsValid */
|
|
5993
|
+
sessionIsValid?: (boolean|null);
|
|
5994
|
+
|
|
5995
|
+
/** CheckSessionRsq tracks */
|
|
5996
|
+
tracks?: (com.quick.voice.proto.ITrack[]|null);
|
|
6007
5997
|
|
|
6008
|
-
/**
|
|
6009
|
-
|
|
5998
|
+
/** CheckSessionRsq session */
|
|
5999
|
+
session?: (string|null);
|
|
6010
6000
|
}
|
|
6011
6001
|
|
|
6012
|
-
/** Represents a
|
|
6013
|
-
class
|
|
6002
|
+
/** Represents a CheckSessionRsq. */
|
|
6003
|
+
class CheckSessionRsq implements ICheckSessionRsq {
|
|
6014
6004
|
|
|
6015
6005
|
/**
|
|
6016
|
-
* Constructs a new
|
|
6006
|
+
* Constructs a new CheckSessionRsq.
|
|
6017
6007
|
* @param [properties] Properties to set
|
|
6018
6008
|
*/
|
|
6019
|
-
constructor(properties?: com.quick.voice.proto.
|
|
6009
|
+
constructor(properties?: com.quick.voice.proto.ICheckSessionRsq);
|
|
6020
6010
|
|
|
6021
|
-
/**
|
|
6022
|
-
public
|
|
6011
|
+
/** CheckSessionRsq sessionIsValid. */
|
|
6012
|
+
public sessionIsValid: boolean;
|
|
6013
|
+
|
|
6014
|
+
/** CheckSessionRsq tracks. */
|
|
6015
|
+
public tracks: com.quick.voice.proto.ITrack[];
|
|
6023
6016
|
|
|
6024
|
-
/**
|
|
6025
|
-
public
|
|
6017
|
+
/** CheckSessionRsq session. */
|
|
6018
|
+
public session: string;
|
|
6026
6019
|
|
|
6027
6020
|
/**
|
|
6028
|
-
* Creates a new
|
|
6021
|
+
* Creates a new CheckSessionRsq instance using the specified properties.
|
|
6029
6022
|
* @param [properties] Properties to set
|
|
6030
|
-
* @returns
|
|
6023
|
+
* @returns CheckSessionRsq instance
|
|
6031
6024
|
*/
|
|
6032
|
-
public static create(properties?: com.quick.voice.proto.
|
|
6025
|
+
public static create(properties?: com.quick.voice.proto.ICheckSessionRsq): com.quick.voice.proto.CheckSessionRsq;
|
|
6033
6026
|
|
|
6034
6027
|
/**
|
|
6035
|
-
* Encodes the specified
|
|
6036
|
-
* @param message
|
|
6028
|
+
* Encodes the specified CheckSessionRsq message. Does not implicitly {@link com.quick.voice.proto.CheckSessionRsq.verify|verify} messages.
|
|
6029
|
+
* @param message CheckSessionRsq message or plain object to encode
|
|
6037
6030
|
* @param [writer] Writer to encode to
|
|
6038
6031
|
* @returns Writer
|
|
6039
6032
|
*/
|
|
6040
|
-
public static encode(message: com.quick.voice.proto.
|
|
6033
|
+
public static encode(message: com.quick.voice.proto.ICheckSessionRsq, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
6041
6034
|
|
|
6042
6035
|
/**
|
|
6043
|
-
* Encodes the specified
|
|
6044
|
-
* @param message
|
|
6036
|
+
* Encodes the specified CheckSessionRsq message, length delimited. Does not implicitly {@link com.quick.voice.proto.CheckSessionRsq.verify|verify} messages.
|
|
6037
|
+
* @param message CheckSessionRsq message or plain object to encode
|
|
6045
6038
|
* @param [writer] Writer to encode to
|
|
6046
6039
|
* @returns Writer
|
|
6047
6040
|
*/
|
|
6048
|
-
public static encodeDelimited(message: com.quick.voice.proto.
|
|
6041
|
+
public static encodeDelimited(message: com.quick.voice.proto.ICheckSessionRsq, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
6049
6042
|
|
|
6050
6043
|
/**
|
|
6051
|
-
* Decodes a
|
|
6044
|
+
* Decodes a CheckSessionRsq message from the specified reader or buffer.
|
|
6052
6045
|
* @param reader Reader or buffer to decode from
|
|
6053
6046
|
* @param [length] Message length if known beforehand
|
|
6054
|
-
* @returns
|
|
6047
|
+
* @returns CheckSessionRsq
|
|
6055
6048
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
6056
6049
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
6057
6050
|
*/
|
|
6058
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): com.quick.voice.proto.
|
|
6051
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): com.quick.voice.proto.CheckSessionRsq;
|
|
6059
6052
|
|
|
6060
6053
|
/**
|
|
6061
|
-
* Decodes a
|
|
6054
|
+
* Decodes a CheckSessionRsq message from the specified reader or buffer, length delimited.
|
|
6062
6055
|
* @param reader Reader or buffer to decode from
|
|
6063
|
-
* @returns
|
|
6056
|
+
* @returns CheckSessionRsq
|
|
6064
6057
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
6065
6058
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
6066
6059
|
*/
|
|
6067
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): com.quick.voice.proto.
|
|
6060
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): com.quick.voice.proto.CheckSessionRsq;
|
|
6068
6061
|
|
|
6069
6062
|
/**
|
|
6070
|
-
* Verifies a
|
|
6063
|
+
* Verifies a CheckSessionRsq message.
|
|
6071
6064
|
* @param message Plain object to verify
|
|
6072
6065
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
6073
6066
|
*/
|
|
6074
6067
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
6075
6068
|
|
|
6076
6069
|
/**
|
|
6077
|
-
* Creates a
|
|
6070
|
+
* Creates a CheckSessionRsq message from a plain object. Also converts values to their respective internal types.
|
|
6078
6071
|
* @param object Plain object
|
|
6079
|
-
* @returns
|
|
6072
|
+
* @returns CheckSessionRsq
|
|
6080
6073
|
*/
|
|
6081
|
-
public static fromObject(object: { [k: string]: any }): com.quick.voice.proto.
|
|
6074
|
+
public static fromObject(object: { [k: string]: any }): com.quick.voice.proto.CheckSessionRsq;
|
|
6082
6075
|
|
|
6083
6076
|
/**
|
|
6084
|
-
* Creates a plain object from a
|
|
6085
|
-
* @param message
|
|
6077
|
+
* Creates a plain object from a CheckSessionRsq message. Also converts values to other types if specified.
|
|
6078
|
+
* @param message CheckSessionRsq
|
|
6086
6079
|
* @param [options] Conversion options
|
|
6087
6080
|
* @returns Plain object
|
|
6088
6081
|
*/
|
|
6089
|
-
public static toObject(message: com.quick.voice.proto.
|
|
6082
|
+
public static toObject(message: com.quick.voice.proto.CheckSessionRsq, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
6090
6083
|
|
|
6091
6084
|
/**
|
|
6092
|
-
* Converts this
|
|
6085
|
+
* Converts this CheckSessionRsq to JSON.
|
|
6093
6086
|
* @returns JSON object
|
|
6094
6087
|
*/
|
|
6095
6088
|
public toJSON(): { [k: string]: any };
|
|
6096
6089
|
|
|
6097
6090
|
/**
|
|
6098
|
-
* Gets the default type url for
|
|
6091
|
+
* Gets the default type url for CheckSessionRsq
|
|
6099
6092
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
6100
6093
|
* @returns The default type url
|
|
6101
6094
|
*/
|
|
6102
6095
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6103
6096
|
}
|
|
6104
6097
|
|
|
6105
|
-
/** Properties of a
|
|
6106
|
-
interface
|
|
6098
|
+
/** Properties of a RoomSpeechNotify. */
|
|
6099
|
+
interface IRoomSpeechNotify {
|
|
6107
6100
|
|
|
6108
|
-
/**
|
|
6109
|
-
|
|
6101
|
+
/** RoomSpeechNotify roomId */
|
|
6102
|
+
roomId?: (string|null);
|
|
6110
6103
|
|
|
6111
|
-
/**
|
|
6112
|
-
|
|
6104
|
+
/** RoomSpeechNotify userId */
|
|
6105
|
+
userId?: (string|null);
|
|
6113
6106
|
|
|
6114
|
-
/**
|
|
6115
|
-
|
|
6107
|
+
/** RoomSpeechNotify text */
|
|
6108
|
+
text?: (string|null);
|
|
6116
6109
|
|
|
6117
|
-
/**
|
|
6118
|
-
|
|
6110
|
+
/** RoomSpeechNotify timestamp */
|
|
6111
|
+
timestamp?: (number|Long|null);
|
|
6119
6112
|
}
|
|
6120
6113
|
|
|
6121
|
-
/** Represents a
|
|
6122
|
-
class
|
|
6114
|
+
/** Represents a RoomSpeechNotify. */
|
|
6115
|
+
class RoomSpeechNotify implements IRoomSpeechNotify {
|
|
6123
6116
|
|
|
6124
6117
|
/**
|
|
6125
|
-
* Constructs a new
|
|
6118
|
+
* Constructs a new RoomSpeechNotify.
|
|
6126
6119
|
* @param [properties] Properties to set
|
|
6127
6120
|
*/
|
|
6128
|
-
constructor(properties?: com.quick.voice.proto.
|
|
6129
|
-
|
|
6130
|
-
/** ReportTrafficUsage p2pPush. */
|
|
6131
|
-
public p2pPush?: (number|Long|null);
|
|
6132
|
-
|
|
6133
|
-
/** ReportTrafficUsage p2pPull. */
|
|
6134
|
-
public p2pPull?: (number|Long|null);
|
|
6135
|
-
|
|
6136
|
-
/** ReportTrafficUsage sfuPush. */
|
|
6137
|
-
public sfuPush?: (number|Long|null);
|
|
6138
|
-
|
|
6139
|
-
/** ReportTrafficUsage sfuPull. */
|
|
6140
|
-
public sfuPull?: (number|Long|null);
|
|
6121
|
+
constructor(properties?: com.quick.voice.proto.IRoomSpeechNotify);
|
|
6141
6122
|
|
|
6142
|
-
/**
|
|
6143
|
-
public
|
|
6123
|
+
/** RoomSpeechNotify roomId. */
|
|
6124
|
+
public roomId: string;
|
|
6144
6125
|
|
|
6145
|
-
/**
|
|
6146
|
-
public
|
|
6126
|
+
/** RoomSpeechNotify userId. */
|
|
6127
|
+
public userId: string;
|
|
6147
6128
|
|
|
6148
|
-
/**
|
|
6149
|
-
public
|
|
6129
|
+
/** RoomSpeechNotify text. */
|
|
6130
|
+
public text: string;
|
|
6150
6131
|
|
|
6151
|
-
/**
|
|
6152
|
-
public
|
|
6132
|
+
/** RoomSpeechNotify timestamp. */
|
|
6133
|
+
public timestamp: (number|Long);
|
|
6153
6134
|
|
|
6154
6135
|
/**
|
|
6155
|
-
* Creates a new
|
|
6136
|
+
* Creates a new RoomSpeechNotify instance using the specified properties.
|
|
6156
6137
|
* @param [properties] Properties to set
|
|
6157
|
-
* @returns
|
|
6138
|
+
* @returns RoomSpeechNotify instance
|
|
6158
6139
|
*/
|
|
6159
|
-
public static create(properties?: com.quick.voice.proto.
|
|
6140
|
+
public static create(properties?: com.quick.voice.proto.IRoomSpeechNotify): com.quick.voice.proto.RoomSpeechNotify;
|
|
6160
6141
|
|
|
6161
6142
|
/**
|
|
6162
|
-
* Encodes the specified
|
|
6163
|
-
* @param message
|
|
6143
|
+
* Encodes the specified RoomSpeechNotify message. Does not implicitly {@link com.quick.voice.proto.RoomSpeechNotify.verify|verify} messages.
|
|
6144
|
+
* @param message RoomSpeechNotify message or plain object to encode
|
|
6164
6145
|
* @param [writer] Writer to encode to
|
|
6165
6146
|
* @returns Writer
|
|
6166
6147
|
*/
|
|
6167
|
-
public static encode(message: com.quick.voice.proto.
|
|
6148
|
+
public static encode(message: com.quick.voice.proto.IRoomSpeechNotify, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
6168
6149
|
|
|
6169
6150
|
/**
|
|
6170
|
-
* Encodes the specified
|
|
6171
|
-
* @param message
|
|
6151
|
+
* Encodes the specified RoomSpeechNotify message, length delimited. Does not implicitly {@link com.quick.voice.proto.RoomSpeechNotify.verify|verify} messages.
|
|
6152
|
+
* @param message RoomSpeechNotify message or plain object to encode
|
|
6172
6153
|
* @param [writer] Writer to encode to
|
|
6173
6154
|
* @returns Writer
|
|
6174
6155
|
*/
|
|
6175
|
-
public static encodeDelimited(message: com.quick.voice.proto.
|
|
6156
|
+
public static encodeDelimited(message: com.quick.voice.proto.IRoomSpeechNotify, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
6176
6157
|
|
|
6177
6158
|
/**
|
|
6178
|
-
* Decodes a
|
|
6159
|
+
* Decodes a RoomSpeechNotify message from the specified reader or buffer.
|
|
6179
6160
|
* @param reader Reader or buffer to decode from
|
|
6180
6161
|
* @param [length] Message length if known beforehand
|
|
6181
|
-
* @returns
|
|
6162
|
+
* @returns RoomSpeechNotify
|
|
6182
6163
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
6183
6164
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
6184
6165
|
*/
|
|
6185
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): com.quick.voice.proto.
|
|
6166
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): com.quick.voice.proto.RoomSpeechNotify;
|
|
6186
6167
|
|
|
6187
6168
|
/**
|
|
6188
|
-
* Decodes a
|
|
6169
|
+
* Decodes a RoomSpeechNotify message from the specified reader or buffer, length delimited.
|
|
6189
6170
|
* @param reader Reader or buffer to decode from
|
|
6190
|
-
* @returns
|
|
6171
|
+
* @returns RoomSpeechNotify
|
|
6191
6172
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
6192
6173
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
6193
6174
|
*/
|
|
6194
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): com.quick.voice.proto.
|
|
6175
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): com.quick.voice.proto.RoomSpeechNotify;
|
|
6195
6176
|
|
|
6196
6177
|
/**
|
|
6197
|
-
* Verifies a
|
|
6178
|
+
* Verifies a RoomSpeechNotify message.
|
|
6198
6179
|
* @param message Plain object to verify
|
|
6199
6180
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
6200
6181
|
*/
|
|
6201
6182
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
6202
6183
|
|
|
6203
6184
|
/**
|
|
6204
|
-
* Creates a
|
|
6185
|
+
* Creates a RoomSpeechNotify message from a plain object. Also converts values to their respective internal types.
|
|
6205
6186
|
* @param object Plain object
|
|
6206
|
-
* @returns
|
|
6187
|
+
* @returns RoomSpeechNotify
|
|
6207
6188
|
*/
|
|
6208
|
-
public static fromObject(object: { [k: string]: any }): com.quick.voice.proto.
|
|
6189
|
+
public static fromObject(object: { [k: string]: any }): com.quick.voice.proto.RoomSpeechNotify;
|
|
6209
6190
|
|
|
6210
6191
|
/**
|
|
6211
|
-
* Creates a plain object from a
|
|
6212
|
-
* @param message
|
|
6192
|
+
* Creates a plain object from a RoomSpeechNotify message. Also converts values to other types if specified.
|
|
6193
|
+
* @param message RoomSpeechNotify
|
|
6213
6194
|
* @param [options] Conversion options
|
|
6214
6195
|
* @returns Plain object
|
|
6215
6196
|
*/
|
|
6216
|
-
public static toObject(message: com.quick.voice.proto.
|
|
6197
|
+
public static toObject(message: com.quick.voice.proto.RoomSpeechNotify, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
6217
6198
|
|
|
6218
6199
|
/**
|
|
6219
|
-
* Converts this
|
|
6200
|
+
* Converts this RoomSpeechNotify to JSON.
|
|
6220
6201
|
* @returns JSON object
|
|
6221
6202
|
*/
|
|
6222
6203
|
public toJSON(): { [k: string]: any };
|
|
6223
6204
|
|
|
6224
6205
|
/**
|
|
6225
|
-
* Gets the default type url for
|
|
6206
|
+
* Gets the default type url for RoomSpeechNotify
|
|
6226
6207
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
6227
6208
|
* @returns The default type url
|
|
6228
6209
|
*/
|
|
6229
6210
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6230
6211
|
}
|
|
6231
6212
|
|
|
6232
|
-
/** Properties of
|
|
6233
|
-
interface
|
|
6213
|
+
/** Properties of an AiLangSetting. */
|
|
6214
|
+
interface IAiLangSetting {
|
|
6234
6215
|
|
|
6235
|
-
/**
|
|
6236
|
-
|
|
6216
|
+
/** AiLangSetting input */
|
|
6217
|
+
input?: (string|null);
|
|
6237
6218
|
|
|
6238
|
-
/**
|
|
6239
|
-
|
|
6219
|
+
/** AiLangSetting output */
|
|
6220
|
+
output?: (string|null);
|
|
6240
6221
|
}
|
|
6241
6222
|
|
|
6242
|
-
/** Represents
|
|
6243
|
-
class
|
|
6223
|
+
/** Represents an AiLangSetting. */
|
|
6224
|
+
class AiLangSetting implements IAiLangSetting {
|
|
6244
6225
|
|
|
6245
6226
|
/**
|
|
6246
|
-
* Constructs a new
|
|
6227
|
+
* Constructs a new AiLangSetting.
|
|
6247
6228
|
* @param [properties] Properties to set
|
|
6248
6229
|
*/
|
|
6249
|
-
constructor(properties?: com.quick.voice.proto.
|
|
6230
|
+
constructor(properties?: com.quick.voice.proto.IAiLangSetting);
|
|
6250
6231
|
|
|
6251
|
-
/**
|
|
6252
|
-
public
|
|
6232
|
+
/** AiLangSetting input. */
|
|
6233
|
+
public input: string;
|
|
6253
6234
|
|
|
6254
|
-
/**
|
|
6255
|
-
public
|
|
6235
|
+
/** AiLangSetting output. */
|
|
6236
|
+
public output: string;
|
|
6256
6237
|
|
|
6257
6238
|
/**
|
|
6258
|
-
* Creates a new
|
|
6239
|
+
* Creates a new AiLangSetting instance using the specified properties.
|
|
6259
6240
|
* @param [properties] Properties to set
|
|
6260
|
-
* @returns
|
|
6241
|
+
* @returns AiLangSetting instance
|
|
6261
6242
|
*/
|
|
6262
|
-
public static create(properties?: com.quick.voice.proto.
|
|
6243
|
+
public static create(properties?: com.quick.voice.proto.IAiLangSetting): com.quick.voice.proto.AiLangSetting;
|
|
6263
6244
|
|
|
6264
6245
|
/**
|
|
6265
|
-
* Encodes the specified
|
|
6266
|
-
* @param message
|
|
6246
|
+
* Encodes the specified AiLangSetting message. Does not implicitly {@link com.quick.voice.proto.AiLangSetting.verify|verify} messages.
|
|
6247
|
+
* @param message AiLangSetting message or plain object to encode
|
|
6267
6248
|
* @param [writer] Writer to encode to
|
|
6268
6249
|
* @returns Writer
|
|
6269
6250
|
*/
|
|
6270
|
-
public static encode(message: com.quick.voice.proto.
|
|
6251
|
+
public static encode(message: com.quick.voice.proto.IAiLangSetting, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
6271
6252
|
|
|
6272
6253
|
/**
|
|
6273
|
-
* Encodes the specified
|
|
6274
|
-
* @param message
|
|
6254
|
+
* Encodes the specified AiLangSetting message, length delimited. Does not implicitly {@link com.quick.voice.proto.AiLangSetting.verify|verify} messages.
|
|
6255
|
+
* @param message AiLangSetting message or plain object to encode
|
|
6275
6256
|
* @param [writer] Writer to encode to
|
|
6276
6257
|
* @returns Writer
|
|
6277
6258
|
*/
|
|
6278
|
-
public static encodeDelimited(message: com.quick.voice.proto.
|
|
6259
|
+
public static encodeDelimited(message: com.quick.voice.proto.IAiLangSetting, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
6279
6260
|
|
|
6280
6261
|
/**
|
|
6281
|
-
* Decodes
|
|
6262
|
+
* Decodes an AiLangSetting message from the specified reader or buffer.
|
|
6282
6263
|
* @param reader Reader or buffer to decode from
|
|
6283
6264
|
* @param [length] Message length if known beforehand
|
|
6284
|
-
* @returns
|
|
6265
|
+
* @returns AiLangSetting
|
|
6285
6266
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
6286
6267
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
6287
6268
|
*/
|
|
6288
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): com.quick.voice.proto.
|
|
6269
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): com.quick.voice.proto.AiLangSetting;
|
|
6289
6270
|
|
|
6290
6271
|
/**
|
|
6291
|
-
* Decodes
|
|
6272
|
+
* Decodes an AiLangSetting message from the specified reader or buffer, length delimited.
|
|
6292
6273
|
* @param reader Reader or buffer to decode from
|
|
6293
|
-
* @returns
|
|
6274
|
+
* @returns AiLangSetting
|
|
6294
6275
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
6295
6276
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
6296
6277
|
*/
|
|
6297
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): com.quick.voice.proto.
|
|
6278
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): com.quick.voice.proto.AiLangSetting;
|
|
6298
6279
|
|
|
6299
6280
|
/**
|
|
6300
|
-
* Verifies
|
|
6281
|
+
* Verifies an AiLangSetting message.
|
|
6301
6282
|
* @param message Plain object to verify
|
|
6302
6283
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
6303
6284
|
*/
|
|
6304
6285
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
6305
6286
|
|
|
6306
6287
|
/**
|
|
6307
|
-
* Creates
|
|
6288
|
+
* Creates an AiLangSetting message from a plain object. Also converts values to their respective internal types.
|
|
6308
6289
|
* @param object Plain object
|
|
6309
|
-
* @returns
|
|
6290
|
+
* @returns AiLangSetting
|
|
6310
6291
|
*/
|
|
6311
|
-
public static fromObject(object: { [k: string]: any }): com.quick.voice.proto.
|
|
6292
|
+
public static fromObject(object: { [k: string]: any }): com.quick.voice.proto.AiLangSetting;
|
|
6312
6293
|
|
|
6313
6294
|
/**
|
|
6314
|
-
* Creates a plain object from
|
|
6315
|
-
* @param message
|
|
6295
|
+
* Creates a plain object from an AiLangSetting message. Also converts values to other types if specified.
|
|
6296
|
+
* @param message AiLangSetting
|
|
6316
6297
|
* @param [options] Conversion options
|
|
6317
6298
|
* @returns Plain object
|
|
6318
6299
|
*/
|
|
6319
|
-
public static toObject(message: com.quick.voice.proto.
|
|
6300
|
+
public static toObject(message: com.quick.voice.proto.AiLangSetting, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
6320
6301
|
|
|
6321
6302
|
/**
|
|
6322
|
-
* Converts this
|
|
6303
|
+
* Converts this AiLangSetting to JSON.
|
|
6323
6304
|
* @returns JSON object
|
|
6324
6305
|
*/
|
|
6325
6306
|
public toJSON(): { [k: string]: any };
|
|
6326
6307
|
|
|
6327
6308
|
/**
|
|
6328
|
-
* Gets the default type url for
|
|
6309
|
+
* Gets the default type url for AiLangSetting
|
|
6329
6310
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
6330
6311
|
* @returns The default type url
|
|
6331
6312
|
*/
|
|
6332
6313
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6333
6314
|
}
|
|
6334
6315
|
|
|
6335
|
-
/**
|
|
6336
|
-
|
|
6337
|
-
|
|
6338
|
-
|
|
6339
|
-
|
|
6340
|
-
|
|
6341
|
-
|
|
6342
|
-
tracks?: (com.quick.voice.proto.ITrack[]|null);
|
|
6316
|
+
/** P2PIgnoreReason enum. */
|
|
6317
|
+
enum P2PIgnoreReason {
|
|
6318
|
+
CHANNEL_LIMIT = 0,
|
|
6319
|
+
SUBSCRIBE_NOT_EXIST = 1,
|
|
6320
|
+
Busying = 2,
|
|
6321
|
+
TRACK_NOT_EXIST = 3,
|
|
6322
|
+
OTHER = 4
|
|
6343
6323
|
}
|
|
6344
6324
|
|
|
6345
|
-
/**
|
|
6346
|
-
|
|
6347
|
-
|
|
6348
|
-
/**
|
|
6349
|
-
* Constructs a new CheckSessionReq.
|
|
6350
|
-
* @param [properties] Properties to set
|
|
6351
|
-
*/
|
|
6352
|
-
constructor(properties?: com.quick.voice.proto.ICheckSessionReq);
|
|
6353
|
-
|
|
6354
|
-
/** CheckSessionReq session. */
|
|
6355
|
-
public session: string;
|
|
6356
|
-
|
|
6357
|
-
/** CheckSessionReq tracks. */
|
|
6358
|
-
public tracks: com.quick.voice.proto.ITrack[];
|
|
6359
|
-
|
|
6360
|
-
/**
|
|
6361
|
-
* Creates a new CheckSessionReq instance using the specified properties.
|
|
6362
|
-
* @param [properties] Properties to set
|
|
6363
|
-
* @returns CheckSessionReq instance
|
|
6364
|
-
*/
|
|
6365
|
-
public static create(properties?: com.quick.voice.proto.ICheckSessionReq): com.quick.voice.proto.CheckSessionReq;
|
|
6366
|
-
|
|
6367
|
-
/**
|
|
6368
|
-
* Encodes the specified CheckSessionReq message. Does not implicitly {@link com.quick.voice.proto.CheckSessionReq.verify|verify} messages.
|
|
6369
|
-
* @param message CheckSessionReq message or plain object to encode
|
|
6370
|
-
* @param [writer] Writer to encode to
|
|
6371
|
-
* @returns Writer
|
|
6372
|
-
*/
|
|
6373
|
-
public static encode(message: com.quick.voice.proto.ICheckSessionReq, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
6374
|
-
|
|
6375
|
-
/**
|
|
6376
|
-
* Encodes the specified CheckSessionReq message, length delimited. Does not implicitly {@link com.quick.voice.proto.CheckSessionReq.verify|verify} messages.
|
|
6377
|
-
* @param message CheckSessionReq message or plain object to encode
|
|
6378
|
-
* @param [writer] Writer to encode to
|
|
6379
|
-
* @returns Writer
|
|
6380
|
-
*/
|
|
6381
|
-
public static encodeDelimited(message: com.quick.voice.proto.ICheckSessionReq, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
6325
|
+
/** Properties of a P2PAvailablePeerNotify. */
|
|
6326
|
+
interface IP2PAvailablePeerNotify {
|
|
6382
6327
|
|
|
6383
|
-
/**
|
|
6384
|
-
|
|
6385
|
-
* @param reader Reader or buffer to decode from
|
|
6386
|
-
* @param [length] Message length if known beforehand
|
|
6387
|
-
* @returns CheckSessionReq
|
|
6388
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
6389
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
6390
|
-
*/
|
|
6391
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): com.quick.voice.proto.CheckSessionReq;
|
|
6392
|
-
|
|
6393
|
-
/**
|
|
6394
|
-
* Decodes a CheckSessionReq message from the specified reader or buffer, length delimited.
|
|
6395
|
-
* @param reader Reader or buffer to decode from
|
|
6396
|
-
* @returns CheckSessionReq
|
|
6397
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
6398
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
6399
|
-
*/
|
|
6400
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): com.quick.voice.proto.CheckSessionReq;
|
|
6401
|
-
|
|
6402
|
-
/**
|
|
6403
|
-
* Verifies a CheckSessionReq message.
|
|
6404
|
-
* @param message Plain object to verify
|
|
6405
|
-
* @returns `null` if valid, otherwise the reason why it is not
|
|
6406
|
-
*/
|
|
6407
|
-
public static verify(message: { [k: string]: any }): (string|null);
|
|
6408
|
-
|
|
6409
|
-
/**
|
|
6410
|
-
* Creates a CheckSessionReq message from a plain object. Also converts values to their respective internal types.
|
|
6411
|
-
* @param object Plain object
|
|
6412
|
-
* @returns CheckSessionReq
|
|
6413
|
-
*/
|
|
6414
|
-
public static fromObject(object: { [k: string]: any }): com.quick.voice.proto.CheckSessionReq;
|
|
6415
|
-
|
|
6416
|
-
/**
|
|
6417
|
-
* Creates a plain object from a CheckSessionReq message. Also converts values to other types if specified.
|
|
6418
|
-
* @param message CheckSessionReq
|
|
6419
|
-
* @param [options] Conversion options
|
|
6420
|
-
* @returns Plain object
|
|
6421
|
-
*/
|
|
6422
|
-
public static toObject(message: com.quick.voice.proto.CheckSessionReq, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
6423
|
-
|
|
6424
|
-
/**
|
|
6425
|
-
* Converts this CheckSessionReq to JSON.
|
|
6426
|
-
* @returns JSON object
|
|
6427
|
-
*/
|
|
6428
|
-
public toJSON(): { [k: string]: any };
|
|
6429
|
-
|
|
6430
|
-
/**
|
|
6431
|
-
* Gets the default type url for CheckSessionReq
|
|
6432
|
-
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
6433
|
-
* @returns The default type url
|
|
6434
|
-
*/
|
|
6435
|
-
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6436
|
-
}
|
|
6437
|
-
|
|
6438
|
-
/** Properties of a CheckSessionRsq. */
|
|
6439
|
-
interface ICheckSessionRsq {
|
|
6440
|
-
|
|
6441
|
-
/** CheckSessionRsq sessionIsValid */
|
|
6442
|
-
sessionIsValid?: (boolean|null);
|
|
6328
|
+
/** P2PAvailablePeerNotify roomId */
|
|
6329
|
+
roomId?: (string|null);
|
|
6443
6330
|
|
|
6444
|
-
/**
|
|
6445
|
-
|
|
6331
|
+
/** P2PAvailablePeerNotify pushId */
|
|
6332
|
+
pushId?: (string|null);
|
|
6446
6333
|
|
|
6447
|
-
/**
|
|
6448
|
-
|
|
6334
|
+
/** P2PAvailablePeerNotify types */
|
|
6335
|
+
types?: (com.quick.voice.proto.TrackType[]|null);
|
|
6449
6336
|
}
|
|
6450
6337
|
|
|
6451
|
-
/** Represents a
|
|
6452
|
-
class
|
|
6338
|
+
/** Represents a P2PAvailablePeerNotify. */
|
|
6339
|
+
class P2PAvailablePeerNotify implements IP2PAvailablePeerNotify {
|
|
6453
6340
|
|
|
6454
6341
|
/**
|
|
6455
|
-
* Constructs a new
|
|
6342
|
+
* Constructs a new P2PAvailablePeerNotify.
|
|
6456
6343
|
* @param [properties] Properties to set
|
|
6457
6344
|
*/
|
|
6458
|
-
constructor(properties?: com.quick.voice.proto.
|
|
6345
|
+
constructor(properties?: com.quick.voice.proto.IP2PAvailablePeerNotify);
|
|
6459
6346
|
|
|
6460
|
-
/**
|
|
6461
|
-
public
|
|
6347
|
+
/** P2PAvailablePeerNotify roomId. */
|
|
6348
|
+
public roomId: string;
|
|
6462
6349
|
|
|
6463
|
-
/**
|
|
6464
|
-
public
|
|
6350
|
+
/** P2PAvailablePeerNotify pushId. */
|
|
6351
|
+
public pushId: string;
|
|
6465
6352
|
|
|
6466
|
-
/**
|
|
6467
|
-
public
|
|
6353
|
+
/** P2PAvailablePeerNotify types. */
|
|
6354
|
+
public types: com.quick.voice.proto.TrackType[];
|
|
6468
6355
|
|
|
6469
6356
|
/**
|
|
6470
|
-
* Creates a new
|
|
6357
|
+
* Creates a new P2PAvailablePeerNotify instance using the specified properties.
|
|
6471
6358
|
* @param [properties] Properties to set
|
|
6472
|
-
* @returns
|
|
6359
|
+
* @returns P2PAvailablePeerNotify instance
|
|
6473
6360
|
*/
|
|
6474
|
-
public static create(properties?: com.quick.voice.proto.
|
|
6361
|
+
public static create(properties?: com.quick.voice.proto.IP2PAvailablePeerNotify): com.quick.voice.proto.P2PAvailablePeerNotify;
|
|
6475
6362
|
|
|
6476
6363
|
/**
|
|
6477
|
-
* Encodes the specified
|
|
6478
|
-
* @param message
|
|
6364
|
+
* Encodes the specified P2PAvailablePeerNotify message. Does not implicitly {@link com.quick.voice.proto.P2PAvailablePeerNotify.verify|verify} messages.
|
|
6365
|
+
* @param message P2PAvailablePeerNotify message or plain object to encode
|
|
6479
6366
|
* @param [writer] Writer to encode to
|
|
6480
6367
|
* @returns Writer
|
|
6481
6368
|
*/
|
|
6482
|
-
public static encode(message: com.quick.voice.proto.
|
|
6369
|
+
public static encode(message: com.quick.voice.proto.IP2PAvailablePeerNotify, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
6483
6370
|
|
|
6484
6371
|
/**
|
|
6485
|
-
* Encodes the specified
|
|
6486
|
-
* @param message
|
|
6372
|
+
* Encodes the specified P2PAvailablePeerNotify message, length delimited. Does not implicitly {@link com.quick.voice.proto.P2PAvailablePeerNotify.verify|verify} messages.
|
|
6373
|
+
* @param message P2PAvailablePeerNotify message or plain object to encode
|
|
6487
6374
|
* @param [writer] Writer to encode to
|
|
6488
6375
|
* @returns Writer
|
|
6489
6376
|
*/
|
|
6490
|
-
public static encodeDelimited(message: com.quick.voice.proto.
|
|
6377
|
+
public static encodeDelimited(message: com.quick.voice.proto.IP2PAvailablePeerNotify, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
6491
6378
|
|
|
6492
6379
|
/**
|
|
6493
|
-
* Decodes a
|
|
6380
|
+
* Decodes a P2PAvailablePeerNotify message from the specified reader or buffer.
|
|
6494
6381
|
* @param reader Reader or buffer to decode from
|
|
6495
6382
|
* @param [length] Message length if known beforehand
|
|
6496
|
-
* @returns
|
|
6383
|
+
* @returns P2PAvailablePeerNotify
|
|
6497
6384
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
6498
6385
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
6499
6386
|
*/
|
|
6500
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): com.quick.voice.proto.
|
|
6387
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): com.quick.voice.proto.P2PAvailablePeerNotify;
|
|
6501
6388
|
|
|
6502
6389
|
/**
|
|
6503
|
-
* Decodes a
|
|
6390
|
+
* Decodes a P2PAvailablePeerNotify message from the specified reader or buffer, length delimited.
|
|
6504
6391
|
* @param reader Reader or buffer to decode from
|
|
6505
|
-
* @returns
|
|
6392
|
+
* @returns P2PAvailablePeerNotify
|
|
6506
6393
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
6507
6394
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
6508
6395
|
*/
|
|
6509
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): com.quick.voice.proto.
|
|
6396
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): com.quick.voice.proto.P2PAvailablePeerNotify;
|
|
6510
6397
|
|
|
6511
6398
|
/**
|
|
6512
|
-
* Verifies a
|
|
6399
|
+
* Verifies a P2PAvailablePeerNotify message.
|
|
6513
6400
|
* @param message Plain object to verify
|
|
6514
6401
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
6515
6402
|
*/
|
|
6516
6403
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
6517
6404
|
|
|
6518
6405
|
/**
|
|
6519
|
-
* Creates a
|
|
6406
|
+
* Creates a P2PAvailablePeerNotify message from a plain object. Also converts values to their respective internal types.
|
|
6520
6407
|
* @param object Plain object
|
|
6521
|
-
* @returns
|
|
6408
|
+
* @returns P2PAvailablePeerNotify
|
|
6522
6409
|
*/
|
|
6523
|
-
public static fromObject(object: { [k: string]: any }): com.quick.voice.proto.
|
|
6410
|
+
public static fromObject(object: { [k: string]: any }): com.quick.voice.proto.P2PAvailablePeerNotify;
|
|
6524
6411
|
|
|
6525
6412
|
/**
|
|
6526
|
-
* Creates a plain object from a
|
|
6527
|
-
* @param message
|
|
6413
|
+
* Creates a plain object from a P2PAvailablePeerNotify message. Also converts values to other types if specified.
|
|
6414
|
+
* @param message P2PAvailablePeerNotify
|
|
6528
6415
|
* @param [options] Conversion options
|
|
6529
6416
|
* @returns Plain object
|
|
6530
6417
|
*/
|
|
6531
|
-
public static toObject(message: com.quick.voice.proto.
|
|
6418
|
+
public static toObject(message: com.quick.voice.proto.P2PAvailablePeerNotify, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
6532
6419
|
|
|
6533
6420
|
/**
|
|
6534
|
-
* Converts this
|
|
6421
|
+
* Converts this P2PAvailablePeerNotify to JSON.
|
|
6535
6422
|
* @returns JSON object
|
|
6536
6423
|
*/
|
|
6537
6424
|
public toJSON(): { [k: string]: any };
|
|
6538
6425
|
|
|
6539
6426
|
/**
|
|
6540
|
-
* Gets the default type url for
|
|
6427
|
+
* Gets the default type url for P2PAvailablePeerNotify
|
|
6541
6428
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
6542
6429
|
* @returns The default type url
|
|
6543
6430
|
*/
|
|
6544
6431
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6545
6432
|
}
|
|
6546
6433
|
|
|
6547
|
-
/** Properties of a
|
|
6548
|
-
interface
|
|
6549
|
-
|
|
6550
|
-
/** P2PDisconnectReq remoteUserId */
|
|
6551
|
-
remoteUserId?: (string|null);
|
|
6552
|
-
}
|
|
6553
|
-
|
|
6554
|
-
/** Represents a P2PDisconnectReq. */
|
|
6555
|
-
class P2PDisconnectReq implements IP2PDisconnectReq {
|
|
6556
|
-
|
|
6557
|
-
/**
|
|
6558
|
-
* Constructs a new P2PDisconnectReq.
|
|
6559
|
-
* @param [properties] Properties to set
|
|
6560
|
-
*/
|
|
6561
|
-
constructor(properties?: com.quick.voice.proto.IP2PDisconnectReq);
|
|
6434
|
+
/** Properties of a ReportP2PExReq. */
|
|
6435
|
+
interface IReportP2PExReq {
|
|
6562
6436
|
|
|
6563
|
-
/**
|
|
6564
|
-
|
|
6437
|
+
/** ReportP2PExReq roomId */
|
|
6438
|
+
roomId?: (string|null);
|
|
6565
6439
|
|
|
6566
|
-
/**
|
|
6567
|
-
|
|
6568
|
-
* @param [properties] Properties to set
|
|
6569
|
-
* @returns P2PDisconnectReq instance
|
|
6570
|
-
*/
|
|
6571
|
-
public static create(properties?: com.quick.voice.proto.IP2PDisconnectReq): com.quick.voice.proto.P2PDisconnectReq;
|
|
6440
|
+
/** ReportP2PExReq pushId */
|
|
6441
|
+
pushId?: (string|null);
|
|
6572
6442
|
|
|
6573
|
-
/**
|
|
6574
|
-
|
|
6575
|
-
* @param message P2PDisconnectReq message or plain object to encode
|
|
6576
|
-
* @param [writer] Writer to encode to
|
|
6577
|
-
* @returns Writer
|
|
6578
|
-
*/
|
|
6579
|
-
public static encode(message: com.quick.voice.proto.IP2PDisconnectReq, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
6443
|
+
/** ReportP2PExReq pullId */
|
|
6444
|
+
pullId?: (string|null);
|
|
6580
6445
|
|
|
6581
|
-
/**
|
|
6582
|
-
|
|
6583
|
-
* @param message P2PDisconnectReq message or plain object to encode
|
|
6584
|
-
* @param [writer] Writer to encode to
|
|
6585
|
-
* @returns Writer
|
|
6586
|
-
*/
|
|
6587
|
-
public static encodeDelimited(message: com.quick.voice.proto.IP2PDisconnectReq, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
6446
|
+
/** ReportP2PExReq code */
|
|
6447
|
+
code?: (com.quick.voice.proto.P2PCode|null);
|
|
6588
6448
|
|
|
6589
|
-
/**
|
|
6590
|
-
|
|
6591
|
-
* @param reader Reader or buffer to decode from
|
|
6592
|
-
* @param [length] Message length if known beforehand
|
|
6593
|
-
* @returns P2PDisconnectReq
|
|
6594
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
6595
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
6596
|
-
*/
|
|
6597
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): com.quick.voice.proto.P2PDisconnectReq;
|
|
6449
|
+
/** ReportP2PExReq types */
|
|
6450
|
+
types?: (com.quick.voice.proto.TrackType[]|null);
|
|
6598
6451
|
|
|
6599
|
-
/**
|
|
6600
|
-
|
|
6601
|
-
* @param reader Reader or buffer to decode from
|
|
6602
|
-
* @returns P2PDisconnectReq
|
|
6603
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
6604
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
6605
|
-
*/
|
|
6606
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): com.quick.voice.proto.P2PDisconnectReq;
|
|
6452
|
+
/** ReportP2PExReq desc */
|
|
6453
|
+
desc?: (string|null);
|
|
6607
6454
|
|
|
6608
|
-
/**
|
|
6609
|
-
|
|
6610
|
-
|
|
6611
|
-
* @returns `null` if valid, otherwise the reason why it is not
|
|
6612
|
-
*/
|
|
6613
|
-
public static verify(message: { [k: string]: any }): (string|null);
|
|
6455
|
+
/** ReportP2PExReq connectedTime */
|
|
6456
|
+
connectedTime?: (string|null);
|
|
6457
|
+
}
|
|
6614
6458
|
|
|
6615
|
-
|
|
6616
|
-
|
|
6617
|
-
* @param object Plain object
|
|
6618
|
-
* @returns P2PDisconnectReq
|
|
6619
|
-
*/
|
|
6620
|
-
public static fromObject(object: { [k: string]: any }): com.quick.voice.proto.P2PDisconnectReq;
|
|
6459
|
+
/** Represents a ReportP2PExReq. */
|
|
6460
|
+
class ReportP2PExReq implements IReportP2PExReq {
|
|
6621
6461
|
|
|
6622
6462
|
/**
|
|
6623
|
-
*
|
|
6624
|
-
* @param
|
|
6625
|
-
* @param [options] Conversion options
|
|
6626
|
-
* @returns Plain object
|
|
6463
|
+
* Constructs a new ReportP2PExReq.
|
|
6464
|
+
* @param [properties] Properties to set
|
|
6627
6465
|
*/
|
|
6628
|
-
|
|
6466
|
+
constructor(properties?: com.quick.voice.proto.IReportP2PExReq);
|
|
6629
6467
|
|
|
6630
|
-
/**
|
|
6631
|
-
|
|
6632
|
-
* @returns JSON object
|
|
6633
|
-
*/
|
|
6634
|
-
public toJSON(): { [k: string]: any };
|
|
6468
|
+
/** ReportP2PExReq roomId. */
|
|
6469
|
+
public roomId: string;
|
|
6635
6470
|
|
|
6636
|
-
/**
|
|
6637
|
-
|
|
6638
|
-
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
6639
|
-
* @returns The default type url
|
|
6640
|
-
*/
|
|
6641
|
-
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6642
|
-
}
|
|
6471
|
+
/** ReportP2PExReq pushId. */
|
|
6472
|
+
public pushId: string;
|
|
6643
6473
|
|
|
6644
|
-
|
|
6645
|
-
|
|
6474
|
+
/** ReportP2PExReq pullId. */
|
|
6475
|
+
public pullId: string;
|
|
6646
6476
|
|
|
6647
|
-
/**
|
|
6648
|
-
|
|
6477
|
+
/** ReportP2PExReq code. */
|
|
6478
|
+
public code: com.quick.voice.proto.P2PCode;
|
|
6649
6479
|
|
|
6650
|
-
/**
|
|
6651
|
-
|
|
6652
|
-
}
|
|
6480
|
+
/** ReportP2PExReq types. */
|
|
6481
|
+
public types: com.quick.voice.proto.TrackType[];
|
|
6653
6482
|
|
|
6654
|
-
|
|
6655
|
-
|
|
6483
|
+
/** ReportP2PExReq desc. */
|
|
6484
|
+
public desc?: (string|null);
|
|
6656
6485
|
|
|
6657
|
-
/**
|
|
6658
|
-
|
|
6659
|
-
* @param [properties] Properties to set
|
|
6660
|
-
*/
|
|
6661
|
-
constructor(properties?: com.quick.voice.proto.IP2PDisconnectNotify);
|
|
6486
|
+
/** ReportP2PExReq connectedTime. */
|
|
6487
|
+
public connectedTime?: (string|null);
|
|
6662
6488
|
|
|
6663
|
-
/**
|
|
6664
|
-
public
|
|
6489
|
+
/** ReportP2PExReq _desc. */
|
|
6490
|
+
public _desc?: "desc";
|
|
6665
6491
|
|
|
6666
|
-
/**
|
|
6667
|
-
public
|
|
6492
|
+
/** ReportP2PExReq _connectedTime. */
|
|
6493
|
+
public _connectedTime?: "connectedTime";
|
|
6668
6494
|
|
|
6669
6495
|
/**
|
|
6670
|
-
* Creates a new
|
|
6496
|
+
* Creates a new ReportP2PExReq instance using the specified properties.
|
|
6671
6497
|
* @param [properties] Properties to set
|
|
6672
|
-
* @returns
|
|
6498
|
+
* @returns ReportP2PExReq instance
|
|
6673
6499
|
*/
|
|
6674
|
-
public static create(properties?: com.quick.voice.proto.
|
|
6500
|
+
public static create(properties?: com.quick.voice.proto.IReportP2PExReq): com.quick.voice.proto.ReportP2PExReq;
|
|
6675
6501
|
|
|
6676
6502
|
/**
|
|
6677
|
-
* Encodes the specified
|
|
6678
|
-
* @param message
|
|
6503
|
+
* Encodes the specified ReportP2PExReq message. Does not implicitly {@link com.quick.voice.proto.ReportP2PExReq.verify|verify} messages.
|
|
6504
|
+
* @param message ReportP2PExReq message or plain object to encode
|
|
6679
6505
|
* @param [writer] Writer to encode to
|
|
6680
6506
|
* @returns Writer
|
|
6681
6507
|
*/
|
|
6682
|
-
public static encode(message: com.quick.voice.proto.
|
|
6508
|
+
public static encode(message: com.quick.voice.proto.IReportP2PExReq, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
6683
6509
|
|
|
6684
6510
|
/**
|
|
6685
|
-
* Encodes the specified
|
|
6686
|
-
* @param message
|
|
6511
|
+
* Encodes the specified ReportP2PExReq message, length delimited. Does not implicitly {@link com.quick.voice.proto.ReportP2PExReq.verify|verify} messages.
|
|
6512
|
+
* @param message ReportP2PExReq message or plain object to encode
|
|
6687
6513
|
* @param [writer] Writer to encode to
|
|
6688
6514
|
* @returns Writer
|
|
6689
6515
|
*/
|
|
6690
|
-
public static encodeDelimited(message: com.quick.voice.proto.
|
|
6516
|
+
public static encodeDelimited(message: com.quick.voice.proto.IReportP2PExReq, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
6691
6517
|
|
|
6692
6518
|
/**
|
|
6693
|
-
* Decodes a
|
|
6519
|
+
* Decodes a ReportP2PExReq message from the specified reader or buffer.
|
|
6694
6520
|
* @param reader Reader or buffer to decode from
|
|
6695
6521
|
* @param [length] Message length if known beforehand
|
|
6696
|
-
* @returns
|
|
6522
|
+
* @returns ReportP2PExReq
|
|
6697
6523
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
6698
6524
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
6699
6525
|
*/
|
|
6700
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): com.quick.voice.proto.
|
|
6526
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): com.quick.voice.proto.ReportP2PExReq;
|
|
6701
6527
|
|
|
6702
6528
|
/**
|
|
6703
|
-
* Decodes a
|
|
6529
|
+
* Decodes a ReportP2PExReq message from the specified reader or buffer, length delimited.
|
|
6704
6530
|
* @param reader Reader or buffer to decode from
|
|
6705
|
-
* @returns
|
|
6531
|
+
* @returns ReportP2PExReq
|
|
6706
6532
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
6707
6533
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
6708
6534
|
*/
|
|
6709
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): com.quick.voice.proto.
|
|
6535
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): com.quick.voice.proto.ReportP2PExReq;
|
|
6710
6536
|
|
|
6711
6537
|
/**
|
|
6712
|
-
* Verifies a
|
|
6538
|
+
* Verifies a ReportP2PExReq message.
|
|
6713
6539
|
* @param message Plain object to verify
|
|
6714
6540
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
6715
6541
|
*/
|
|
6716
6542
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
6717
6543
|
|
|
6718
6544
|
/**
|
|
6719
|
-
* Creates a
|
|
6545
|
+
* Creates a ReportP2PExReq message from a plain object. Also converts values to their respective internal types.
|
|
6720
6546
|
* @param object Plain object
|
|
6721
|
-
* @returns
|
|
6547
|
+
* @returns ReportP2PExReq
|
|
6722
6548
|
*/
|
|
6723
|
-
public static fromObject(object: { [k: string]: any }): com.quick.voice.proto.
|
|
6549
|
+
public static fromObject(object: { [k: string]: any }): com.quick.voice.proto.ReportP2PExReq;
|
|
6724
6550
|
|
|
6725
6551
|
/**
|
|
6726
|
-
* Creates a plain object from a
|
|
6727
|
-
* @param message
|
|
6552
|
+
* Creates a plain object from a ReportP2PExReq message. Also converts values to other types if specified.
|
|
6553
|
+
* @param message ReportP2PExReq
|
|
6728
6554
|
* @param [options] Conversion options
|
|
6729
6555
|
* @returns Plain object
|
|
6730
6556
|
*/
|
|
6731
|
-
public static toObject(message: com.quick.voice.proto.
|
|
6557
|
+
public static toObject(message: com.quick.voice.proto.ReportP2PExReq, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
6732
6558
|
|
|
6733
6559
|
/**
|
|
6734
|
-
* Converts this
|
|
6560
|
+
* Converts this ReportP2PExReq to JSON.
|
|
6735
6561
|
* @returns JSON object
|
|
6736
6562
|
*/
|
|
6737
6563
|
public toJSON(): { [k: string]: any };
|
|
6738
6564
|
|
|
6739
6565
|
/**
|
|
6740
|
-
* Gets the default type url for
|
|
6566
|
+
* Gets the default type url for ReportP2PExReq
|
|
6741
6567
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
6742
6568
|
* @returns The default type url
|
|
6743
6569
|
*/
|
|
6744
6570
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
6745
6571
|
}
|
|
6746
6572
|
|
|
6747
|
-
/** Properties of a
|
|
6748
|
-
interface
|
|
6573
|
+
/** Properties of a P2PDisconnectedNotify. */
|
|
6574
|
+
interface IP2PDisconnectedNotify {
|
|
6749
6575
|
|
|
6750
|
-
/**
|
|
6576
|
+
/** P2PDisconnectedNotify roomId */
|
|
6751
6577
|
roomId?: (string|null);
|
|
6752
6578
|
|
|
6753
|
-
/**
|
|
6754
|
-
|
|
6755
|
-
|
|
6756
|
-
/** RoomSpeechNotify text */
|
|
6757
|
-
text?: (string|null);
|
|
6579
|
+
/** P2PDisconnectedNotify remoteUserId */
|
|
6580
|
+
remoteUserId?: (string|null);
|
|
6758
6581
|
|
|
6759
|
-
/**
|
|
6760
|
-
|
|
6582
|
+
/** P2PDisconnectedNotify types */
|
|
6583
|
+
types?: (com.quick.voice.proto.TrackType[]|null);
|
|
6761
6584
|
}
|
|
6762
6585
|
|
|
6763
|
-
/** Represents a
|
|
6764
|
-
class
|
|
6586
|
+
/** Represents a P2PDisconnectedNotify. */
|
|
6587
|
+
class P2PDisconnectedNotify implements IP2PDisconnectedNotify {
|
|
6765
6588
|
|
|
6766
6589
|
/**
|
|
6767
|
-
* Constructs a new
|
|
6590
|
+
* Constructs a new P2PDisconnectedNotify.
|
|
6768
6591
|
* @param [properties] Properties to set
|
|
6769
6592
|
*/
|
|
6770
|
-
constructor(properties?: com.quick.voice.proto.
|
|
6593
|
+
constructor(properties?: com.quick.voice.proto.IP2PDisconnectedNotify);
|
|
6771
6594
|
|
|
6772
|
-
/**
|
|
6595
|
+
/** P2PDisconnectedNotify roomId. */
|
|
6773
6596
|
public roomId: string;
|
|
6774
6597
|
|
|
6775
|
-
/**
|
|
6776
|
-
public
|
|
6777
|
-
|
|
6778
|
-
/** RoomSpeechNotify text. */
|
|
6779
|
-
public text: string;
|
|
6598
|
+
/** P2PDisconnectedNotify remoteUserId. */
|
|
6599
|
+
public remoteUserId: string;
|
|
6780
6600
|
|
|
6781
|
-
/**
|
|
6782
|
-
public
|
|
6601
|
+
/** P2PDisconnectedNotify types. */
|
|
6602
|
+
public types: com.quick.voice.proto.TrackType[];
|
|
6783
6603
|
|
|
6784
6604
|
/**
|
|
6785
|
-
* Creates a new
|
|
6605
|
+
* Creates a new P2PDisconnectedNotify instance using the specified properties.
|
|
6786
6606
|
* @param [properties] Properties to set
|
|
6787
|
-
* @returns
|
|
6607
|
+
* @returns P2PDisconnectedNotify instance
|
|
6788
6608
|
*/
|
|
6789
|
-
public static create(properties?: com.quick.voice.proto.
|
|
6609
|
+
public static create(properties?: com.quick.voice.proto.IP2PDisconnectedNotify): com.quick.voice.proto.P2PDisconnectedNotify;
|
|
6790
6610
|
|
|
6791
6611
|
/**
|
|
6792
|
-
* Encodes the specified
|
|
6793
|
-
* @param message
|
|
6612
|
+
* Encodes the specified P2PDisconnectedNotify message. Does not implicitly {@link com.quick.voice.proto.P2PDisconnectedNotify.verify|verify} messages.
|
|
6613
|
+
* @param message P2PDisconnectedNotify message or plain object to encode
|
|
6794
6614
|
* @param [writer] Writer to encode to
|
|
6795
6615
|
* @returns Writer
|
|
6796
6616
|
*/
|
|
6797
|
-
public static encode(message: com.quick.voice.proto.
|
|
6617
|
+
public static encode(message: com.quick.voice.proto.IP2PDisconnectedNotify, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
6798
6618
|
|
|
6799
6619
|
/**
|
|
6800
|
-
* Encodes the specified
|
|
6801
|
-
* @param message
|
|
6620
|
+
* Encodes the specified P2PDisconnectedNotify message, length delimited. Does not implicitly {@link com.quick.voice.proto.P2PDisconnectedNotify.verify|verify} messages.
|
|
6621
|
+
* @param message P2PDisconnectedNotify message or plain object to encode
|
|
6802
6622
|
* @param [writer] Writer to encode to
|
|
6803
6623
|
* @returns Writer
|
|
6804
6624
|
*/
|
|
6805
|
-
public static encodeDelimited(message: com.quick.voice.proto.
|
|
6625
|
+
public static encodeDelimited(message: com.quick.voice.proto.IP2PDisconnectedNotify, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
6806
6626
|
|
|
6807
6627
|
/**
|
|
6808
|
-
* Decodes a
|
|
6628
|
+
* Decodes a P2PDisconnectedNotify message from the specified reader or buffer.
|
|
6809
6629
|
* @param reader Reader or buffer to decode from
|
|
6810
6630
|
* @param [length] Message length if known beforehand
|
|
6811
|
-
* @returns
|
|
6631
|
+
* @returns P2PDisconnectedNotify
|
|
6812
6632
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
6813
6633
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
6814
6634
|
*/
|
|
6815
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): com.quick.voice.proto.
|
|
6635
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): com.quick.voice.proto.P2PDisconnectedNotify;
|
|
6816
6636
|
|
|
6817
6637
|
/**
|
|
6818
|
-
* Decodes a
|
|
6638
|
+
* Decodes a P2PDisconnectedNotify message from the specified reader or buffer, length delimited.
|
|
6819
6639
|
* @param reader Reader or buffer to decode from
|
|
6820
|
-
* @returns
|
|
6640
|
+
* @returns P2PDisconnectedNotify
|
|
6821
6641
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
6822
6642
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
6823
6643
|
*/
|
|
6824
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): com.quick.voice.proto.
|
|
6644
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): com.quick.voice.proto.P2PDisconnectedNotify;
|
|
6825
6645
|
|
|
6826
6646
|
/**
|
|
6827
|
-
* Verifies a
|
|
6647
|
+
* Verifies a P2PDisconnectedNotify message.
|
|
6828
6648
|
* @param message Plain object to verify
|
|
6829
6649
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
6830
6650
|
*/
|
|
6831
6651
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
6832
6652
|
|
|
6833
6653
|
/**
|
|
6834
|
-
* Creates a
|
|
6654
|
+
* Creates a P2PDisconnectedNotify message from a plain object. Also converts values to their respective internal types.
|
|
6835
6655
|
* @param object Plain object
|
|
6836
|
-
* @returns
|
|
6656
|
+
* @returns P2PDisconnectedNotify
|
|
6837
6657
|
*/
|
|
6838
|
-
public static fromObject(object: { [k: string]: any }): com.quick.voice.proto.
|
|
6658
|
+
public static fromObject(object: { [k: string]: any }): com.quick.voice.proto.P2PDisconnectedNotify;
|
|
6839
6659
|
|
|
6840
6660
|
/**
|
|
6841
|
-
* Creates a plain object from a
|
|
6842
|
-
* @param message
|
|
6661
|
+
* Creates a plain object from a P2PDisconnectedNotify message. Also converts values to other types if specified.
|
|
6662
|
+
* @param message P2PDisconnectedNotify
|
|
6843
6663
|
* @param [options] Conversion options
|
|
6844
6664
|
* @returns Plain object
|
|
6845
6665
|
*/
|
|
6846
|
-
public static toObject(message: com.quick.voice.proto.
|
|
6666
|
+
public static toObject(message: com.quick.voice.proto.P2PDisconnectedNotify, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
6847
6667
|
|
|
6848
6668
|
/**
|
|
6849
|
-
* Converts this
|
|
6669
|
+
* Converts this P2PDisconnectedNotify to JSON.
|
|
6850
6670
|
* @returns JSON object
|
|
6851
6671
|
*/
|
|
6852
6672
|
public toJSON(): { [k: string]: any };
|
|
6853
6673
|
|
|
6854
6674
|
/**
|
|
6855
|
-
* Gets the default type url for
|
|
6675
|
+
* Gets the default type url for P2PDisconnectedNotify
|
|
6856
6676
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
6857
6677
|
* @returns The default type url
|
|
6858
6678
|
*/
|