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