@sniipwebmaster/biller-service-client-grpcweb 24.6.6910 → 24.6.6929
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.
|
@@ -3921,6 +3921,67 @@ proto.sniipbillerapi.SniipBillerAPIServicePromiseClient.prototype.rejectSmeInvoi
|
|
|
3921
3921
|
};
|
|
3922
3922
|
|
|
3923
3923
|
|
|
3924
|
+
/**
|
|
3925
|
+
* @const
|
|
3926
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
3927
|
+
* !proto.sniipbillerapi.ResetSmeBillerConfigRequest,
|
|
3928
|
+
* !proto.sniipbillerapi.ResponseCode>}
|
|
3929
|
+
*/
|
|
3930
|
+
const methodDescriptor_SniipBillerAPIService_ResetSmeBillerConfig = new grpc.web.MethodDescriptor(
|
|
3931
|
+
'/sniipbillerapi.SniipBillerAPIService/ResetSmeBillerConfig',
|
|
3932
|
+
grpc.web.MethodType.UNARY,
|
|
3933
|
+
proto.sniipbillerapi.ResetSmeBillerConfigRequest,
|
|
3934
|
+
proto.sniipbillerapi.ResponseCode,
|
|
3935
|
+
/**
|
|
3936
|
+
* @param {!proto.sniipbillerapi.ResetSmeBillerConfigRequest} request
|
|
3937
|
+
* @return {!Uint8Array}
|
|
3938
|
+
*/
|
|
3939
|
+
function(request) {
|
|
3940
|
+
return request.serializeBinary();
|
|
3941
|
+
},
|
|
3942
|
+
proto.sniipbillerapi.ResponseCode.deserializeBinary
|
|
3943
|
+
);
|
|
3944
|
+
|
|
3945
|
+
|
|
3946
|
+
/**
|
|
3947
|
+
* @param {!proto.sniipbillerapi.ResetSmeBillerConfigRequest} request The
|
|
3948
|
+
* request proto
|
|
3949
|
+
* @param {?Object<string, string>} metadata User defined
|
|
3950
|
+
* call metadata
|
|
3951
|
+
* @param {function(?grpc.web.RpcError, ?proto.sniipbillerapi.ResponseCode)}
|
|
3952
|
+
* callback The callback function(error, response)
|
|
3953
|
+
* @return {!grpc.web.ClientReadableStream<!proto.sniipbillerapi.ResponseCode>|undefined}
|
|
3954
|
+
* The XHR Node Readable Stream
|
|
3955
|
+
*/
|
|
3956
|
+
proto.sniipbillerapi.SniipBillerAPIServiceClient.prototype.resetSmeBillerConfig =
|
|
3957
|
+
function(request, metadata, callback) {
|
|
3958
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
3959
|
+
'/sniipbillerapi.SniipBillerAPIService/ResetSmeBillerConfig',
|
|
3960
|
+
request,
|
|
3961
|
+
metadata || {},
|
|
3962
|
+
methodDescriptor_SniipBillerAPIService_ResetSmeBillerConfig,
|
|
3963
|
+
callback);
|
|
3964
|
+
};
|
|
3965
|
+
|
|
3966
|
+
|
|
3967
|
+
/**
|
|
3968
|
+
* @param {!proto.sniipbillerapi.ResetSmeBillerConfigRequest} request The
|
|
3969
|
+
* request proto
|
|
3970
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
3971
|
+
* call metadata
|
|
3972
|
+
* @return {!Promise<!proto.sniipbillerapi.ResponseCode>}
|
|
3973
|
+
* Promise that resolves to the response
|
|
3974
|
+
*/
|
|
3975
|
+
proto.sniipbillerapi.SniipBillerAPIServicePromiseClient.prototype.resetSmeBillerConfig =
|
|
3976
|
+
function(request, metadata) {
|
|
3977
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
3978
|
+
'/sniipbillerapi.SniipBillerAPIService/ResetSmeBillerConfig',
|
|
3979
|
+
request,
|
|
3980
|
+
metadata || {},
|
|
3981
|
+
methodDescriptor_SniipBillerAPIService_ResetSmeBillerConfig);
|
|
3982
|
+
};
|
|
3983
|
+
|
|
3984
|
+
|
|
3924
3985
|
/**
|
|
3925
3986
|
* @const
|
|
3926
3987
|
* @type {!grpc.web.MethodDescriptor<
|
|
@@ -157,6 +157,7 @@ goog.exportSymbol('proto.sniipbillerapi.QRCodeConfig', null, global);
|
|
|
157
157
|
goog.exportSymbol('proto.sniipbillerapi.QRCodeConfigRoot', null, global);
|
|
158
158
|
goog.exportSymbol('proto.sniipbillerapi.RejectSmeInvoiceRequest', null, global);
|
|
159
159
|
goog.exportSymbol('proto.sniipbillerapi.ReportRecipient', null, global);
|
|
160
|
+
goog.exportSymbol('proto.sniipbillerapi.ResetSmeBillerConfigRequest', null, global);
|
|
160
161
|
goog.exportSymbol('proto.sniipbillerapi.ResponseCode', null, global);
|
|
161
162
|
goog.exportSymbol('proto.sniipbillerapi.RestrictionItemInfo', null, global);
|
|
162
163
|
goog.exportSymbol('proto.sniipbillerapi.ReviewBillersRequest', null, global);
|
|
@@ -3091,6 +3092,27 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
3091
3092
|
*/
|
|
3092
3093
|
proto.sniipbillerapi.ReportRecipient.displayName = 'proto.sniipbillerapi.ReportRecipient';
|
|
3093
3094
|
}
|
|
3095
|
+
/**
|
|
3096
|
+
* Generated by JsPbCodeGenerator.
|
|
3097
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
3098
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
3099
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
3100
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
3101
|
+
* valid.
|
|
3102
|
+
* @extends {jspb.Message}
|
|
3103
|
+
* @constructor
|
|
3104
|
+
*/
|
|
3105
|
+
proto.sniipbillerapi.ResetSmeBillerConfigRequest = function(opt_data) {
|
|
3106
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
3107
|
+
};
|
|
3108
|
+
goog.inherits(proto.sniipbillerapi.ResetSmeBillerConfigRequest, jspb.Message);
|
|
3109
|
+
if (goog.DEBUG && !COMPILED) {
|
|
3110
|
+
/**
|
|
3111
|
+
* @public
|
|
3112
|
+
* @override
|
|
3113
|
+
*/
|
|
3114
|
+
proto.sniipbillerapi.ResetSmeBillerConfigRequest.displayName = 'proto.sniipbillerapi.ResetSmeBillerConfigRequest';
|
|
3115
|
+
}
|
|
3094
3116
|
/**
|
|
3095
3117
|
* Generated by JsPbCodeGenerator.
|
|
3096
3118
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
@@ -36340,6 +36362,136 @@ proto.sniipbillerapi.ReportRecipient.prototype.setEmail = function(value) {
|
|
|
36340
36362
|
|
|
36341
36363
|
|
|
36342
36364
|
|
|
36365
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
36366
|
+
/**
|
|
36367
|
+
* Creates an object representation of this proto.
|
|
36368
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
36369
|
+
* Optional fields that are not set will be set to undefined.
|
|
36370
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
36371
|
+
* For the list of reserved names please see:
|
|
36372
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
36373
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
36374
|
+
* JSPB instance for transitional soy proto support:
|
|
36375
|
+
* http://goto/soy-param-migration
|
|
36376
|
+
* @return {!Object}
|
|
36377
|
+
*/
|
|
36378
|
+
proto.sniipbillerapi.ResetSmeBillerConfigRequest.prototype.toObject = function(opt_includeInstance) {
|
|
36379
|
+
return proto.sniipbillerapi.ResetSmeBillerConfigRequest.toObject(opt_includeInstance, this);
|
|
36380
|
+
};
|
|
36381
|
+
|
|
36382
|
+
|
|
36383
|
+
/**
|
|
36384
|
+
* Static version of the {@see toObject} method.
|
|
36385
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
36386
|
+
* the JSPB instance for transitional soy proto support:
|
|
36387
|
+
* http://goto/soy-param-migration
|
|
36388
|
+
* @param {!proto.sniipbillerapi.ResetSmeBillerConfigRequest} msg The msg instance to transform.
|
|
36389
|
+
* @return {!Object}
|
|
36390
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
36391
|
+
*/
|
|
36392
|
+
proto.sniipbillerapi.ResetSmeBillerConfigRequest.toObject = function(includeInstance, msg) {
|
|
36393
|
+
var f, obj = {
|
|
36394
|
+
billerconfigid: jspb.Message.getFieldWithDefault(msg, 1, 0)
|
|
36395
|
+
};
|
|
36396
|
+
|
|
36397
|
+
if (includeInstance) {
|
|
36398
|
+
obj.$jspbMessageInstance = msg;
|
|
36399
|
+
}
|
|
36400
|
+
return obj;
|
|
36401
|
+
};
|
|
36402
|
+
}
|
|
36403
|
+
|
|
36404
|
+
|
|
36405
|
+
/**
|
|
36406
|
+
* Deserializes binary data (in protobuf wire format).
|
|
36407
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
36408
|
+
* @return {!proto.sniipbillerapi.ResetSmeBillerConfigRequest}
|
|
36409
|
+
*/
|
|
36410
|
+
proto.sniipbillerapi.ResetSmeBillerConfigRequest.deserializeBinary = function(bytes) {
|
|
36411
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
36412
|
+
var msg = new proto.sniipbillerapi.ResetSmeBillerConfigRequest;
|
|
36413
|
+
return proto.sniipbillerapi.ResetSmeBillerConfigRequest.deserializeBinaryFromReader(msg, reader);
|
|
36414
|
+
};
|
|
36415
|
+
|
|
36416
|
+
|
|
36417
|
+
/**
|
|
36418
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
36419
|
+
* given reader into the given message object.
|
|
36420
|
+
* @param {!proto.sniipbillerapi.ResetSmeBillerConfigRequest} msg The message object to deserialize into.
|
|
36421
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
36422
|
+
* @return {!proto.sniipbillerapi.ResetSmeBillerConfigRequest}
|
|
36423
|
+
*/
|
|
36424
|
+
proto.sniipbillerapi.ResetSmeBillerConfigRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
36425
|
+
while (reader.nextField()) {
|
|
36426
|
+
if (reader.isEndGroup()) {
|
|
36427
|
+
break;
|
|
36428
|
+
}
|
|
36429
|
+
var field = reader.getFieldNumber();
|
|
36430
|
+
switch (field) {
|
|
36431
|
+
case 1:
|
|
36432
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
36433
|
+
msg.setBillerconfigid(value);
|
|
36434
|
+
break;
|
|
36435
|
+
default:
|
|
36436
|
+
reader.skipField();
|
|
36437
|
+
break;
|
|
36438
|
+
}
|
|
36439
|
+
}
|
|
36440
|
+
return msg;
|
|
36441
|
+
};
|
|
36442
|
+
|
|
36443
|
+
|
|
36444
|
+
/**
|
|
36445
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
36446
|
+
* @return {!Uint8Array}
|
|
36447
|
+
*/
|
|
36448
|
+
proto.sniipbillerapi.ResetSmeBillerConfigRequest.prototype.serializeBinary = function() {
|
|
36449
|
+
var writer = new jspb.BinaryWriter();
|
|
36450
|
+
proto.sniipbillerapi.ResetSmeBillerConfigRequest.serializeBinaryToWriter(this, writer);
|
|
36451
|
+
return writer.getResultBuffer();
|
|
36452
|
+
};
|
|
36453
|
+
|
|
36454
|
+
|
|
36455
|
+
/**
|
|
36456
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
36457
|
+
* format), writing to the given BinaryWriter.
|
|
36458
|
+
* @param {!proto.sniipbillerapi.ResetSmeBillerConfigRequest} message
|
|
36459
|
+
* @param {!jspb.BinaryWriter} writer
|
|
36460
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
36461
|
+
*/
|
|
36462
|
+
proto.sniipbillerapi.ResetSmeBillerConfigRequest.serializeBinaryToWriter = function(message, writer) {
|
|
36463
|
+
var f = undefined;
|
|
36464
|
+
f = message.getBillerconfigid();
|
|
36465
|
+
if (f !== 0) {
|
|
36466
|
+
writer.writeInt64(
|
|
36467
|
+
1,
|
|
36468
|
+
f
|
|
36469
|
+
);
|
|
36470
|
+
}
|
|
36471
|
+
};
|
|
36472
|
+
|
|
36473
|
+
|
|
36474
|
+
/**
|
|
36475
|
+
* optional int64 billerConfigId = 1;
|
|
36476
|
+
* @return {number}
|
|
36477
|
+
*/
|
|
36478
|
+
proto.sniipbillerapi.ResetSmeBillerConfigRequest.prototype.getBillerconfigid = function() {
|
|
36479
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 1, 0));
|
|
36480
|
+
};
|
|
36481
|
+
|
|
36482
|
+
|
|
36483
|
+
/**
|
|
36484
|
+
* @param {number} value
|
|
36485
|
+
* @return {!proto.sniipbillerapi.ResetSmeBillerConfigRequest} returns this
|
|
36486
|
+
*/
|
|
36487
|
+
proto.sniipbillerapi.ResetSmeBillerConfigRequest.prototype.setBillerconfigid = function(value) {
|
|
36488
|
+
return jspb.Message.setProto3IntField(this, 1, value);
|
|
36489
|
+
};
|
|
36490
|
+
|
|
36491
|
+
|
|
36492
|
+
|
|
36493
|
+
|
|
36494
|
+
|
|
36343
36495
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
36344
36496
|
/**
|
|
36345
36497
|
* Creates an object representation of this proto.
|