@sniipwebmaster/config-service-client-grpcweb 26.5.2363 → 26.6.2405
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 +107 -2
- package/package.json +1 -1
|
@@ -271,7 +271,7 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
271
271
|
* @constructor
|
|
272
272
|
*/
|
|
273
273
|
proto.sniipappappconfigapi.BusinessRules = function(opt_data) {
|
|
274
|
-
jspb.Message.initialize(this, opt_data, 0, -1,
|
|
274
|
+
jspb.Message.initialize(this, opt_data, 0, -1, proto.sniipappappconfigapi.BusinessRules.repeatedFields_, null);
|
|
275
275
|
};
|
|
276
276
|
goog.inherits(proto.sniipappappconfigapi.BusinessRules, jspb.Message);
|
|
277
277
|
if (goog.DEBUG && !COMPILED) {
|
|
@@ -4790,6 +4790,13 @@ proto.sniipappappconfigapi.DashboardItemsResponse.prototype.clearDisableddashboa
|
|
|
4790
4790
|
|
|
4791
4791
|
|
|
4792
4792
|
|
|
4793
|
+
/**
|
|
4794
|
+
* List of repeated fields within this message type.
|
|
4795
|
+
* @private {!Array<number>}
|
|
4796
|
+
* @const
|
|
4797
|
+
*/
|
|
4798
|
+
proto.sniipappappconfigapi.BusinessRules.repeatedFields_ = [7,8];
|
|
4799
|
+
|
|
4793
4800
|
|
|
4794
4801
|
|
|
4795
4802
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
@@ -4826,7 +4833,9 @@ proto.sniipappappconfigapi.BusinessRules.toObject = function(includeInstance, ms
|
|
|
4826
4833
|
paytobankaccountsenabled: jspb.Message.getBooleanFieldWithDefault(msg, 3, false),
|
|
4827
4834
|
paytopendingexpiryseconds: jspb.Message.getFieldWithDefault(msg, 4, 0),
|
|
4828
4835
|
paytominagreementamount: jspb.Message.getFloatingPointFieldWithDefault(msg, 5, 0.0),
|
|
4829
|
-
paytomaxagreementamount: jspb.Message.getFloatingPointFieldWithDefault(msg, 6, 0.0)
|
|
4836
|
+
paytomaxagreementamount: jspb.Message.getFloatingPointFieldWithDefault(msg, 6, 0.0),
|
|
4837
|
+
kycrequiredappaccounttypesList: (f = jspb.Message.getRepeatedField(msg, 7)) == null ? undefined : f,
|
|
4838
|
+
kycautoverifyappaccounttypesList: (f = jspb.Message.getRepeatedField(msg, 8)) == null ? undefined : f
|
|
4830
4839
|
};
|
|
4831
4840
|
|
|
4832
4841
|
if (includeInstance) {
|
|
@@ -4889,6 +4898,14 @@ proto.sniipappappconfigapi.BusinessRules.deserializeBinaryFromReader = function(
|
|
|
4889
4898
|
var value = /** @type {number} */ (reader.readDouble());
|
|
4890
4899
|
msg.setPaytomaxagreementamount(value);
|
|
4891
4900
|
break;
|
|
4901
|
+
case 7:
|
|
4902
|
+
var value = /** @type {string} */ (reader.readString());
|
|
4903
|
+
msg.addKycrequiredappaccounttypes(value);
|
|
4904
|
+
break;
|
|
4905
|
+
case 8:
|
|
4906
|
+
var value = /** @type {string} */ (reader.readString());
|
|
4907
|
+
msg.addKycautoverifyappaccounttypes(value);
|
|
4908
|
+
break;
|
|
4892
4909
|
default:
|
|
4893
4910
|
reader.skipField();
|
|
4894
4911
|
break;
|
|
@@ -4957,6 +4974,20 @@ proto.sniipappappconfigapi.BusinessRules.serializeBinaryToWriter = function(mess
|
|
|
4957
4974
|
f
|
|
4958
4975
|
);
|
|
4959
4976
|
}
|
|
4977
|
+
f = message.getKycrequiredappaccounttypesList();
|
|
4978
|
+
if (f.length > 0) {
|
|
4979
|
+
writer.writeRepeatedString(
|
|
4980
|
+
7,
|
|
4981
|
+
f
|
|
4982
|
+
);
|
|
4983
|
+
}
|
|
4984
|
+
f = message.getKycautoverifyappaccounttypesList();
|
|
4985
|
+
if (f.length > 0) {
|
|
4986
|
+
writer.writeRepeatedString(
|
|
4987
|
+
8,
|
|
4988
|
+
f
|
|
4989
|
+
);
|
|
4990
|
+
}
|
|
4960
4991
|
};
|
|
4961
4992
|
|
|
4962
4993
|
|
|
@@ -5072,6 +5103,80 @@ proto.sniipappappconfigapi.BusinessRules.prototype.setPaytomaxagreementamount =
|
|
|
5072
5103
|
};
|
|
5073
5104
|
|
|
5074
5105
|
|
|
5106
|
+
/**
|
|
5107
|
+
* repeated string kycRequiredAppAccountTypes = 7;
|
|
5108
|
+
* @return {!Array<string>}
|
|
5109
|
+
*/
|
|
5110
|
+
proto.sniipappappconfigapi.BusinessRules.prototype.getKycrequiredappaccounttypesList = function() {
|
|
5111
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 7));
|
|
5112
|
+
};
|
|
5113
|
+
|
|
5114
|
+
|
|
5115
|
+
/**
|
|
5116
|
+
* @param {!Array<string>} value
|
|
5117
|
+
* @return {!proto.sniipappappconfigapi.BusinessRules} returns this
|
|
5118
|
+
*/
|
|
5119
|
+
proto.sniipappappconfigapi.BusinessRules.prototype.setKycrequiredappaccounttypesList = function(value) {
|
|
5120
|
+
return jspb.Message.setField(this, 7, value || []);
|
|
5121
|
+
};
|
|
5122
|
+
|
|
5123
|
+
|
|
5124
|
+
/**
|
|
5125
|
+
* @param {string} value
|
|
5126
|
+
* @param {number=} opt_index
|
|
5127
|
+
* @return {!proto.sniipappappconfigapi.BusinessRules} returns this
|
|
5128
|
+
*/
|
|
5129
|
+
proto.sniipappappconfigapi.BusinessRules.prototype.addKycrequiredappaccounttypes = function(value, opt_index) {
|
|
5130
|
+
return jspb.Message.addToRepeatedField(this, 7, value, opt_index);
|
|
5131
|
+
};
|
|
5132
|
+
|
|
5133
|
+
|
|
5134
|
+
/**
|
|
5135
|
+
* Clears the list making it empty but non-null.
|
|
5136
|
+
* @return {!proto.sniipappappconfigapi.BusinessRules} returns this
|
|
5137
|
+
*/
|
|
5138
|
+
proto.sniipappappconfigapi.BusinessRules.prototype.clearKycrequiredappaccounttypesList = function() {
|
|
5139
|
+
return this.setKycrequiredappaccounttypesList([]);
|
|
5140
|
+
};
|
|
5141
|
+
|
|
5142
|
+
|
|
5143
|
+
/**
|
|
5144
|
+
* repeated string kycAutoVerifyAppAccountTypes = 8;
|
|
5145
|
+
* @return {!Array<string>}
|
|
5146
|
+
*/
|
|
5147
|
+
proto.sniipappappconfigapi.BusinessRules.prototype.getKycautoverifyappaccounttypesList = function() {
|
|
5148
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 8));
|
|
5149
|
+
};
|
|
5150
|
+
|
|
5151
|
+
|
|
5152
|
+
/**
|
|
5153
|
+
* @param {!Array<string>} value
|
|
5154
|
+
* @return {!proto.sniipappappconfigapi.BusinessRules} returns this
|
|
5155
|
+
*/
|
|
5156
|
+
proto.sniipappappconfigapi.BusinessRules.prototype.setKycautoverifyappaccounttypesList = function(value) {
|
|
5157
|
+
return jspb.Message.setField(this, 8, value || []);
|
|
5158
|
+
};
|
|
5159
|
+
|
|
5160
|
+
|
|
5161
|
+
/**
|
|
5162
|
+
* @param {string} value
|
|
5163
|
+
* @param {number=} opt_index
|
|
5164
|
+
* @return {!proto.sniipappappconfigapi.BusinessRules} returns this
|
|
5165
|
+
*/
|
|
5166
|
+
proto.sniipappappconfigapi.BusinessRules.prototype.addKycautoverifyappaccounttypes = function(value, opt_index) {
|
|
5167
|
+
return jspb.Message.addToRepeatedField(this, 8, value, opt_index);
|
|
5168
|
+
};
|
|
5169
|
+
|
|
5170
|
+
|
|
5171
|
+
/**
|
|
5172
|
+
* Clears the list making it empty but non-null.
|
|
5173
|
+
* @return {!proto.sniipappappconfigapi.BusinessRules} returns this
|
|
5174
|
+
*/
|
|
5175
|
+
proto.sniipappappconfigapi.BusinessRules.prototype.clearKycautoverifyappaccounttypesList = function() {
|
|
5176
|
+
return this.setKycautoverifyappaccounttypesList([]);
|
|
5177
|
+
};
|
|
5178
|
+
|
|
5179
|
+
|
|
5075
5180
|
|
|
5076
5181
|
|
|
5077
5182
|
|