@sniipwebmaster/user-service-client-grpcweb 21.13.5050 → 21.13.5060
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/dependancies/service_pb.js +326 -2
- package/package.json +1 -1
|
@@ -8699,7 +8699,13 @@ proto.sniipuserservice.DeleteAccountRequest.prototype.toObject = function(opt_in
|
|
|
8699
8699
|
proto.sniipuserservice.DeleteAccountRequest.toObject = function(includeInstance, msg) {
|
|
8700
8700
|
var f, obj = {
|
|
8701
8701
|
feedback: msg.getFeedback(),
|
|
8702
|
-
reason: msg.getReason()
|
|
8702
|
+
reason: msg.getReason(),
|
|
8703
|
+
deviceid: msg.getDeviceid(),
|
|
8704
|
+
deviceplatform: msg.getDeviceplatform(),
|
|
8705
|
+
deviceversion: msg.getDeviceversion(),
|
|
8706
|
+
devicemanufacturer: msg.getDevicemanufacturer(),
|
|
8707
|
+
devicemodel: msg.getDevicemodel(),
|
|
8708
|
+
osversion: msg.getOsversion()
|
|
8703
8709
|
};
|
|
8704
8710
|
|
|
8705
8711
|
if (includeInstance) {
|
|
@@ -8744,6 +8750,30 @@ proto.sniipuserservice.DeleteAccountRequest.deserializeBinaryFromReader = functi
|
|
|
8744
8750
|
var value = /** @type {string} */ (reader.readString());
|
|
8745
8751
|
msg.setReason(value);
|
|
8746
8752
|
break;
|
|
8753
|
+
case 4:
|
|
8754
|
+
var value = /** @type {string} */ (reader.readString());
|
|
8755
|
+
msg.setDeviceid(value);
|
|
8756
|
+
break;
|
|
8757
|
+
case 5:
|
|
8758
|
+
var value = /** @type {string} */ (reader.readString());
|
|
8759
|
+
msg.setDeviceplatform(value);
|
|
8760
|
+
break;
|
|
8761
|
+
case 6:
|
|
8762
|
+
var value = /** @type {string} */ (reader.readString());
|
|
8763
|
+
msg.setDeviceversion(value);
|
|
8764
|
+
break;
|
|
8765
|
+
case 7:
|
|
8766
|
+
var value = /** @type {string} */ (reader.readString());
|
|
8767
|
+
msg.setDevicemanufacturer(value);
|
|
8768
|
+
break;
|
|
8769
|
+
case 8:
|
|
8770
|
+
var value = /** @type {string} */ (reader.readString());
|
|
8771
|
+
msg.setDevicemodel(value);
|
|
8772
|
+
break;
|
|
8773
|
+
case 9:
|
|
8774
|
+
var value = /** @type {string} */ (reader.readString());
|
|
8775
|
+
msg.setOsversion(value);
|
|
8776
|
+
break;
|
|
8747
8777
|
default:
|
|
8748
8778
|
reader.skipField();
|
|
8749
8779
|
break;
|
|
@@ -8796,6 +8826,48 @@ proto.sniipuserservice.DeleteAccountRequest.prototype.serializeBinaryToWriter =
|
|
|
8796
8826
|
f
|
|
8797
8827
|
);
|
|
8798
8828
|
}
|
|
8829
|
+
f = this.getDeviceid();
|
|
8830
|
+
if (f.length > 0) {
|
|
8831
|
+
writer.writeString(
|
|
8832
|
+
4,
|
|
8833
|
+
f
|
|
8834
|
+
);
|
|
8835
|
+
}
|
|
8836
|
+
f = this.getDeviceplatform();
|
|
8837
|
+
if (f.length > 0) {
|
|
8838
|
+
writer.writeString(
|
|
8839
|
+
5,
|
|
8840
|
+
f
|
|
8841
|
+
);
|
|
8842
|
+
}
|
|
8843
|
+
f = this.getDeviceversion();
|
|
8844
|
+
if (f.length > 0) {
|
|
8845
|
+
writer.writeString(
|
|
8846
|
+
6,
|
|
8847
|
+
f
|
|
8848
|
+
);
|
|
8849
|
+
}
|
|
8850
|
+
f = this.getDevicemanufacturer();
|
|
8851
|
+
if (f.length > 0) {
|
|
8852
|
+
writer.writeString(
|
|
8853
|
+
7,
|
|
8854
|
+
f
|
|
8855
|
+
);
|
|
8856
|
+
}
|
|
8857
|
+
f = this.getDevicemodel();
|
|
8858
|
+
if (f.length > 0) {
|
|
8859
|
+
writer.writeString(
|
|
8860
|
+
8,
|
|
8861
|
+
f
|
|
8862
|
+
);
|
|
8863
|
+
}
|
|
8864
|
+
f = this.getOsversion();
|
|
8865
|
+
if (f.length > 0) {
|
|
8866
|
+
writer.writeString(
|
|
8867
|
+
9,
|
|
8868
|
+
f
|
|
8869
|
+
);
|
|
8870
|
+
}
|
|
8799
8871
|
};
|
|
8800
8872
|
|
|
8801
8873
|
|
|
@@ -8838,6 +8910,96 @@ proto.sniipuserservice.DeleteAccountRequest.prototype.setReason = function(value
|
|
|
8838
8910
|
};
|
|
8839
8911
|
|
|
8840
8912
|
|
|
8913
|
+
/**
|
|
8914
|
+
* optional string deviceId = 4;
|
|
8915
|
+
* @return {string}
|
|
8916
|
+
*/
|
|
8917
|
+
proto.sniipuserservice.DeleteAccountRequest.prototype.getDeviceid = function() {
|
|
8918
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 4, ""));
|
|
8919
|
+
};
|
|
8920
|
+
|
|
8921
|
+
|
|
8922
|
+
/** @param {string} value */
|
|
8923
|
+
proto.sniipuserservice.DeleteAccountRequest.prototype.setDeviceid = function(value) {
|
|
8924
|
+
jspb.Message.setField(this, 4, value);
|
|
8925
|
+
};
|
|
8926
|
+
|
|
8927
|
+
|
|
8928
|
+
/**
|
|
8929
|
+
* optional string devicePlatform = 5;
|
|
8930
|
+
* @return {string}
|
|
8931
|
+
*/
|
|
8932
|
+
proto.sniipuserservice.DeleteAccountRequest.prototype.getDeviceplatform = function() {
|
|
8933
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 5, ""));
|
|
8934
|
+
};
|
|
8935
|
+
|
|
8936
|
+
|
|
8937
|
+
/** @param {string} value */
|
|
8938
|
+
proto.sniipuserservice.DeleteAccountRequest.prototype.setDeviceplatform = function(value) {
|
|
8939
|
+
jspb.Message.setField(this, 5, value);
|
|
8940
|
+
};
|
|
8941
|
+
|
|
8942
|
+
|
|
8943
|
+
/**
|
|
8944
|
+
* optional string deviceVersion = 6;
|
|
8945
|
+
* @return {string}
|
|
8946
|
+
*/
|
|
8947
|
+
proto.sniipuserservice.DeleteAccountRequest.prototype.getDeviceversion = function() {
|
|
8948
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 6, ""));
|
|
8949
|
+
};
|
|
8950
|
+
|
|
8951
|
+
|
|
8952
|
+
/** @param {string} value */
|
|
8953
|
+
proto.sniipuserservice.DeleteAccountRequest.prototype.setDeviceversion = function(value) {
|
|
8954
|
+
jspb.Message.setField(this, 6, value);
|
|
8955
|
+
};
|
|
8956
|
+
|
|
8957
|
+
|
|
8958
|
+
/**
|
|
8959
|
+
* optional string deviceManufacturer = 7;
|
|
8960
|
+
* @return {string}
|
|
8961
|
+
*/
|
|
8962
|
+
proto.sniipuserservice.DeleteAccountRequest.prototype.getDevicemanufacturer = function() {
|
|
8963
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 7, ""));
|
|
8964
|
+
};
|
|
8965
|
+
|
|
8966
|
+
|
|
8967
|
+
/** @param {string} value */
|
|
8968
|
+
proto.sniipuserservice.DeleteAccountRequest.prototype.setDevicemanufacturer = function(value) {
|
|
8969
|
+
jspb.Message.setField(this, 7, value);
|
|
8970
|
+
};
|
|
8971
|
+
|
|
8972
|
+
|
|
8973
|
+
/**
|
|
8974
|
+
* optional string deviceModel = 8;
|
|
8975
|
+
* @return {string}
|
|
8976
|
+
*/
|
|
8977
|
+
proto.sniipuserservice.DeleteAccountRequest.prototype.getDevicemodel = function() {
|
|
8978
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 8, ""));
|
|
8979
|
+
};
|
|
8980
|
+
|
|
8981
|
+
|
|
8982
|
+
/** @param {string} value */
|
|
8983
|
+
proto.sniipuserservice.DeleteAccountRequest.prototype.setDevicemodel = function(value) {
|
|
8984
|
+
jspb.Message.setField(this, 8, value);
|
|
8985
|
+
};
|
|
8986
|
+
|
|
8987
|
+
|
|
8988
|
+
/**
|
|
8989
|
+
* optional string osVersion = 9;
|
|
8990
|
+
* @return {string}
|
|
8991
|
+
*/
|
|
8992
|
+
proto.sniipuserservice.DeleteAccountRequest.prototype.getOsversion = function() {
|
|
8993
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 9, ""));
|
|
8994
|
+
};
|
|
8995
|
+
|
|
8996
|
+
|
|
8997
|
+
/** @param {string} value */
|
|
8998
|
+
proto.sniipuserservice.DeleteAccountRequest.prototype.setOsversion = function(value) {
|
|
8999
|
+
jspb.Message.setField(this, 9, value);
|
|
9000
|
+
};
|
|
9001
|
+
|
|
9002
|
+
|
|
8841
9003
|
|
|
8842
9004
|
/**
|
|
8843
9005
|
* Generated by JsPbCodeGenerator.
|
|
@@ -9782,7 +9944,13 @@ proto.sniipuserservice.FeedbackRequest.toObject = function(includeInstance, msg)
|
|
|
9782
9944
|
var f, obj = {
|
|
9783
9945
|
event: msg.getEvent(),
|
|
9784
9946
|
feedback: msg.getFeedback(),
|
|
9785
|
-
reason: msg.getReason()
|
|
9947
|
+
reason: msg.getReason(),
|
|
9948
|
+
deviceid: msg.getDeviceid(),
|
|
9949
|
+
deviceplatform: msg.getDeviceplatform(),
|
|
9950
|
+
deviceversion: msg.getDeviceversion(),
|
|
9951
|
+
devicemanufacturer: msg.getDevicemanufacturer(),
|
|
9952
|
+
devicemodel: msg.getDevicemodel(),
|
|
9953
|
+
osversion: msg.getOsversion()
|
|
9786
9954
|
};
|
|
9787
9955
|
|
|
9788
9956
|
if (includeInstance) {
|
|
@@ -9831,6 +9999,30 @@ proto.sniipuserservice.FeedbackRequest.deserializeBinaryFromReader = function(ms
|
|
|
9831
9999
|
var value = /** @type {string} */ (reader.readString());
|
|
9832
10000
|
msg.setReason(value);
|
|
9833
10001
|
break;
|
|
10002
|
+
case 4:
|
|
10003
|
+
var value = /** @type {string} */ (reader.readString());
|
|
10004
|
+
msg.setDeviceid(value);
|
|
10005
|
+
break;
|
|
10006
|
+
case 5:
|
|
10007
|
+
var value = /** @type {string} */ (reader.readString());
|
|
10008
|
+
msg.setDeviceplatform(value);
|
|
10009
|
+
break;
|
|
10010
|
+
case 6:
|
|
10011
|
+
var value = /** @type {string} */ (reader.readString());
|
|
10012
|
+
msg.setDeviceversion(value);
|
|
10013
|
+
break;
|
|
10014
|
+
case 7:
|
|
10015
|
+
var value = /** @type {string} */ (reader.readString());
|
|
10016
|
+
msg.setDevicemanufacturer(value);
|
|
10017
|
+
break;
|
|
10018
|
+
case 8:
|
|
10019
|
+
var value = /** @type {string} */ (reader.readString());
|
|
10020
|
+
msg.setDevicemodel(value);
|
|
10021
|
+
break;
|
|
10022
|
+
case 9:
|
|
10023
|
+
var value = /** @type {string} */ (reader.readString());
|
|
10024
|
+
msg.setOsversion(value);
|
|
10025
|
+
break;
|
|
9834
10026
|
default:
|
|
9835
10027
|
reader.skipField();
|
|
9836
10028
|
break;
|
|
@@ -9890,6 +10082,48 @@ proto.sniipuserservice.FeedbackRequest.prototype.serializeBinaryToWriter = funct
|
|
|
9890
10082
|
f
|
|
9891
10083
|
);
|
|
9892
10084
|
}
|
|
10085
|
+
f = this.getDeviceid();
|
|
10086
|
+
if (f.length > 0) {
|
|
10087
|
+
writer.writeString(
|
|
10088
|
+
4,
|
|
10089
|
+
f
|
|
10090
|
+
);
|
|
10091
|
+
}
|
|
10092
|
+
f = this.getDeviceplatform();
|
|
10093
|
+
if (f.length > 0) {
|
|
10094
|
+
writer.writeString(
|
|
10095
|
+
5,
|
|
10096
|
+
f
|
|
10097
|
+
);
|
|
10098
|
+
}
|
|
10099
|
+
f = this.getDeviceversion();
|
|
10100
|
+
if (f.length > 0) {
|
|
10101
|
+
writer.writeString(
|
|
10102
|
+
6,
|
|
10103
|
+
f
|
|
10104
|
+
);
|
|
10105
|
+
}
|
|
10106
|
+
f = this.getDevicemanufacturer();
|
|
10107
|
+
if (f.length > 0) {
|
|
10108
|
+
writer.writeString(
|
|
10109
|
+
7,
|
|
10110
|
+
f
|
|
10111
|
+
);
|
|
10112
|
+
}
|
|
10113
|
+
f = this.getDevicemodel();
|
|
10114
|
+
if (f.length > 0) {
|
|
10115
|
+
writer.writeString(
|
|
10116
|
+
8,
|
|
10117
|
+
f
|
|
10118
|
+
);
|
|
10119
|
+
}
|
|
10120
|
+
f = this.getOsversion();
|
|
10121
|
+
if (f.length > 0) {
|
|
10122
|
+
writer.writeString(
|
|
10123
|
+
9,
|
|
10124
|
+
f
|
|
10125
|
+
);
|
|
10126
|
+
}
|
|
9893
10127
|
};
|
|
9894
10128
|
|
|
9895
10129
|
|
|
@@ -9947,6 +10181,96 @@ proto.sniipuserservice.FeedbackRequest.prototype.setReason = function(value) {
|
|
|
9947
10181
|
};
|
|
9948
10182
|
|
|
9949
10183
|
|
|
10184
|
+
/**
|
|
10185
|
+
* optional string deviceId = 4;
|
|
10186
|
+
* @return {string}
|
|
10187
|
+
*/
|
|
10188
|
+
proto.sniipuserservice.FeedbackRequest.prototype.getDeviceid = function() {
|
|
10189
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 4, ""));
|
|
10190
|
+
};
|
|
10191
|
+
|
|
10192
|
+
|
|
10193
|
+
/** @param {string} value */
|
|
10194
|
+
proto.sniipuserservice.FeedbackRequest.prototype.setDeviceid = function(value) {
|
|
10195
|
+
jspb.Message.setField(this, 4, value);
|
|
10196
|
+
};
|
|
10197
|
+
|
|
10198
|
+
|
|
10199
|
+
/**
|
|
10200
|
+
* optional string devicePlatform = 5;
|
|
10201
|
+
* @return {string}
|
|
10202
|
+
*/
|
|
10203
|
+
proto.sniipuserservice.FeedbackRequest.prototype.getDeviceplatform = function() {
|
|
10204
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 5, ""));
|
|
10205
|
+
};
|
|
10206
|
+
|
|
10207
|
+
|
|
10208
|
+
/** @param {string} value */
|
|
10209
|
+
proto.sniipuserservice.FeedbackRequest.prototype.setDeviceplatform = function(value) {
|
|
10210
|
+
jspb.Message.setField(this, 5, value);
|
|
10211
|
+
};
|
|
10212
|
+
|
|
10213
|
+
|
|
10214
|
+
/**
|
|
10215
|
+
* optional string deviceVersion = 6;
|
|
10216
|
+
* @return {string}
|
|
10217
|
+
*/
|
|
10218
|
+
proto.sniipuserservice.FeedbackRequest.prototype.getDeviceversion = function() {
|
|
10219
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 6, ""));
|
|
10220
|
+
};
|
|
10221
|
+
|
|
10222
|
+
|
|
10223
|
+
/** @param {string} value */
|
|
10224
|
+
proto.sniipuserservice.FeedbackRequest.prototype.setDeviceversion = function(value) {
|
|
10225
|
+
jspb.Message.setField(this, 6, value);
|
|
10226
|
+
};
|
|
10227
|
+
|
|
10228
|
+
|
|
10229
|
+
/**
|
|
10230
|
+
* optional string deviceManufacturer = 7;
|
|
10231
|
+
* @return {string}
|
|
10232
|
+
*/
|
|
10233
|
+
proto.sniipuserservice.FeedbackRequest.prototype.getDevicemanufacturer = function() {
|
|
10234
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 7, ""));
|
|
10235
|
+
};
|
|
10236
|
+
|
|
10237
|
+
|
|
10238
|
+
/** @param {string} value */
|
|
10239
|
+
proto.sniipuserservice.FeedbackRequest.prototype.setDevicemanufacturer = function(value) {
|
|
10240
|
+
jspb.Message.setField(this, 7, value);
|
|
10241
|
+
};
|
|
10242
|
+
|
|
10243
|
+
|
|
10244
|
+
/**
|
|
10245
|
+
* optional string deviceModel = 8;
|
|
10246
|
+
* @return {string}
|
|
10247
|
+
*/
|
|
10248
|
+
proto.sniipuserservice.FeedbackRequest.prototype.getDevicemodel = function() {
|
|
10249
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 8, ""));
|
|
10250
|
+
};
|
|
10251
|
+
|
|
10252
|
+
|
|
10253
|
+
/** @param {string} value */
|
|
10254
|
+
proto.sniipuserservice.FeedbackRequest.prototype.setDevicemodel = function(value) {
|
|
10255
|
+
jspb.Message.setField(this, 8, value);
|
|
10256
|
+
};
|
|
10257
|
+
|
|
10258
|
+
|
|
10259
|
+
/**
|
|
10260
|
+
* optional string osVersion = 9;
|
|
10261
|
+
* @return {string}
|
|
10262
|
+
*/
|
|
10263
|
+
proto.sniipuserservice.FeedbackRequest.prototype.getOsversion = function() {
|
|
10264
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 9, ""));
|
|
10265
|
+
};
|
|
10266
|
+
|
|
10267
|
+
|
|
10268
|
+
/** @param {string} value */
|
|
10269
|
+
proto.sniipuserservice.FeedbackRequest.prototype.setOsversion = function(value) {
|
|
10270
|
+
jspb.Message.setField(this, 9, value);
|
|
10271
|
+
};
|
|
10272
|
+
|
|
10273
|
+
|
|
9950
10274
|
|
|
9951
10275
|
/**
|
|
9952
10276
|
* Generated by JsPbCodeGenerator.
|