@sniipwebmaster/biller-service-client-grpcweb 23.2.5505 → 23.2.5518
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.
|
@@ -2634,6 +2634,86 @@ proto.sniipbillerapi.SniipBillerAPIServicePromiseClient.prototype.getBillersAll
|
|
|
2634
2634
|
};
|
|
2635
2635
|
|
|
2636
2636
|
|
|
2637
|
+
/**
|
|
2638
|
+
* @const
|
|
2639
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
2640
|
+
* !proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest,
|
|
2641
|
+
* !proto.sniipbillerapi.BillersResponse>}
|
|
2642
|
+
*/
|
|
2643
|
+
const methodDescriptor_SniipBillerAPIService_GetBillersByBillerConfigIds = new grpc.web.MethodDescriptor(
|
|
2644
|
+
'/sniipbillerapi.SniipBillerAPIService/GetBillersByBillerConfigIds',
|
|
2645
|
+
grpc.web.MethodType.UNARY,
|
|
2646
|
+
proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest,
|
|
2647
|
+
proto.sniipbillerapi.BillersResponse,
|
|
2648
|
+
/**
|
|
2649
|
+
* @param {!proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest} request
|
|
2650
|
+
* @return {!Uint8Array}
|
|
2651
|
+
*/
|
|
2652
|
+
function(request) {
|
|
2653
|
+
return request.serializeBinary();
|
|
2654
|
+
},
|
|
2655
|
+
proto.sniipbillerapi.BillersResponse.deserializeBinary
|
|
2656
|
+
);
|
|
2657
|
+
|
|
2658
|
+
|
|
2659
|
+
/**
|
|
2660
|
+
* @const
|
|
2661
|
+
* @type {!grpc.web.AbstractClientBase.MethodInfo<
|
|
2662
|
+
* !proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest,
|
|
2663
|
+
* !proto.sniipbillerapi.BillersResponse>}
|
|
2664
|
+
*/
|
|
2665
|
+
const methodInfo_SniipBillerAPIService_GetBillersByBillerConfigIds = new grpc.web.AbstractClientBase.MethodInfo(
|
|
2666
|
+
proto.sniipbillerapi.BillersResponse,
|
|
2667
|
+
/**
|
|
2668
|
+
* @param {!proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest} request
|
|
2669
|
+
* @return {!Uint8Array}
|
|
2670
|
+
*/
|
|
2671
|
+
function(request) {
|
|
2672
|
+
return request.serializeBinary();
|
|
2673
|
+
},
|
|
2674
|
+
proto.sniipbillerapi.BillersResponse.deserializeBinary
|
|
2675
|
+
);
|
|
2676
|
+
|
|
2677
|
+
|
|
2678
|
+
/**
|
|
2679
|
+
* @param {!proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest} request The
|
|
2680
|
+
* request proto
|
|
2681
|
+
* @param {?Object<string, string>} metadata User defined
|
|
2682
|
+
* call metadata
|
|
2683
|
+
* @param {function(?grpc.web.Error, ?proto.sniipbillerapi.BillersResponse)}
|
|
2684
|
+
* callback The callback function(error, response)
|
|
2685
|
+
* @return {!grpc.web.ClientReadableStream<!proto.sniipbillerapi.BillersResponse>|undefined}
|
|
2686
|
+
* The XHR Node Readable Stream
|
|
2687
|
+
*/
|
|
2688
|
+
proto.sniipbillerapi.SniipBillerAPIServiceClient.prototype.getBillersByBillerConfigIds =
|
|
2689
|
+
function(request, metadata, callback) {
|
|
2690
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
2691
|
+
'/sniipbillerapi.SniipBillerAPIService/GetBillersByBillerConfigIds',
|
|
2692
|
+
request,
|
|
2693
|
+
metadata || {},
|
|
2694
|
+
methodDescriptor_SniipBillerAPIService_GetBillersByBillerConfigIds,
|
|
2695
|
+
callback);
|
|
2696
|
+
};
|
|
2697
|
+
|
|
2698
|
+
|
|
2699
|
+
/**
|
|
2700
|
+
* @param {!proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest} request The
|
|
2701
|
+
* request proto
|
|
2702
|
+
* @param {?Object<string, string>} metadata User defined
|
|
2703
|
+
* call metadata
|
|
2704
|
+
* @return {!Promise<!proto.sniipbillerapi.BillersResponse>}
|
|
2705
|
+
* Promise that resolves to the response
|
|
2706
|
+
*/
|
|
2707
|
+
proto.sniipbillerapi.SniipBillerAPIServicePromiseClient.prototype.getBillersByBillerConfigIds =
|
|
2708
|
+
function(request, metadata) {
|
|
2709
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
2710
|
+
'/sniipbillerapi.SniipBillerAPIService/GetBillersByBillerConfigIds',
|
|
2711
|
+
request,
|
|
2712
|
+
metadata || {},
|
|
2713
|
+
methodDescriptor_SniipBillerAPIService_GetBillersByBillerConfigIds);
|
|
2714
|
+
};
|
|
2715
|
+
|
|
2716
|
+
|
|
2637
2717
|
/**
|
|
2638
2718
|
* @const
|
|
2639
2719
|
* @type {!grpc.web.MethodDescriptor<
|
|
@@ -104,6 +104,7 @@ goog.exportSymbol('proto.sniipbillerapi.GetBillerSmeDetailsResponse', null, glob
|
|
|
104
104
|
goog.exportSymbol('proto.sniipbillerapi.GetBillerWithCodeRequest', null, global);
|
|
105
105
|
goog.exportSymbol('proto.sniipbillerapi.GetBillerWithConfigRequest', null, global);
|
|
106
106
|
goog.exportSymbol('proto.sniipbillerapi.GetBillersAllRequest', null, global);
|
|
107
|
+
goog.exportSymbol('proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest', null, global);
|
|
107
108
|
goog.exportSymbol('proto.sniipbillerapi.GetBillersRequest', null, global);
|
|
108
109
|
goog.exportSymbol('proto.sniipbillerapi.GetBillersWithConfigsRequest', null, global);
|
|
109
110
|
goog.exportSymbol('proto.sniipbillerapi.GetBillersWithSmeConfigsInReviewRequest', null, global);
|
|
@@ -25012,6 +25013,179 @@ proto.sniipbillerapi.GetBillersAllRequest.prototype.hasData = function() {
|
|
|
25012
25013
|
|
|
25013
25014
|
|
|
25014
25015
|
|
|
25016
|
+
/**
|
|
25017
|
+
* Generated by JsPbCodeGenerator.
|
|
25018
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
25019
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
25020
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
25021
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
25022
|
+
* valid.
|
|
25023
|
+
* @extends {jspb.Message}
|
|
25024
|
+
* @constructor
|
|
25025
|
+
*/
|
|
25026
|
+
proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest = function(opt_data) {
|
|
25027
|
+
jspb.Message.initialize(this, opt_data, 0, -1, proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.repeatedFields_, null);
|
|
25028
|
+
};
|
|
25029
|
+
goog.inherits(proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest, jspb.Message);
|
|
25030
|
+
if (goog.DEBUG && !COMPILED) {
|
|
25031
|
+
proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.displayName = 'proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest';
|
|
25032
|
+
}
|
|
25033
|
+
/**
|
|
25034
|
+
* List of repeated fields within this message type.
|
|
25035
|
+
* @private {!Array<number>}
|
|
25036
|
+
* @const
|
|
25037
|
+
*/
|
|
25038
|
+
proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.repeatedFields_ = [1];
|
|
25039
|
+
|
|
25040
|
+
|
|
25041
|
+
|
|
25042
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
25043
|
+
/**
|
|
25044
|
+
* Creates an object representation of this proto suitable for use in Soy templates.
|
|
25045
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
25046
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
25047
|
+
* For the list of reserved names please see:
|
|
25048
|
+
* com.google.apps.jspb.JsClassTemplate.JS_RESERVED_WORDS.
|
|
25049
|
+
* @param {boolean=} opt_includeInstance Whether to include the JSPB instance
|
|
25050
|
+
* for transitional soy proto support: http://goto/soy-param-migration
|
|
25051
|
+
* @return {!Object}
|
|
25052
|
+
*/
|
|
25053
|
+
proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.prototype.toObject = function(opt_includeInstance) {
|
|
25054
|
+
return proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.toObject(opt_includeInstance, this);
|
|
25055
|
+
};
|
|
25056
|
+
|
|
25057
|
+
|
|
25058
|
+
/**
|
|
25059
|
+
* Static version of the {@see toObject} method.
|
|
25060
|
+
* @param {boolean|undefined} includeInstance Whether to include the JSPB
|
|
25061
|
+
* instance for transitional soy proto support:
|
|
25062
|
+
* http://goto/soy-param-migration
|
|
25063
|
+
* @param {!proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest} msg The msg instance to transform.
|
|
25064
|
+
* @return {!Object}
|
|
25065
|
+
*/
|
|
25066
|
+
proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.toObject = function(includeInstance, msg) {
|
|
25067
|
+
var f, obj = {
|
|
25068
|
+
billerconfigidsList: jspb.Message.getField(msg, 1)
|
|
25069
|
+
};
|
|
25070
|
+
|
|
25071
|
+
if (includeInstance) {
|
|
25072
|
+
obj.$jspbMessageInstance = msg;
|
|
25073
|
+
}
|
|
25074
|
+
return obj;
|
|
25075
|
+
};
|
|
25076
|
+
}
|
|
25077
|
+
|
|
25078
|
+
|
|
25079
|
+
/**
|
|
25080
|
+
* Deserializes binary data (in protobuf wire format).
|
|
25081
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
25082
|
+
* @return {!proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest}
|
|
25083
|
+
*/
|
|
25084
|
+
proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.deserializeBinary = function(bytes) {
|
|
25085
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
25086
|
+
var msg = new proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest;
|
|
25087
|
+
return proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.deserializeBinaryFromReader(msg, reader);
|
|
25088
|
+
};
|
|
25089
|
+
|
|
25090
|
+
|
|
25091
|
+
/**
|
|
25092
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
25093
|
+
* given reader into the given message object.
|
|
25094
|
+
* @param {!proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest} msg The message object to deserialize into.
|
|
25095
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
25096
|
+
* @return {!proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest}
|
|
25097
|
+
*/
|
|
25098
|
+
proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
25099
|
+
while (reader.nextField()) {
|
|
25100
|
+
if (reader.isEndGroup()) {
|
|
25101
|
+
break;
|
|
25102
|
+
}
|
|
25103
|
+
var field = reader.getFieldNumber();
|
|
25104
|
+
switch (field) {
|
|
25105
|
+
case 1:
|
|
25106
|
+
var value = /** @type {!Array.<number>} */ (reader.readPackedInt64());
|
|
25107
|
+
msg.setBillerconfigidsList(value);
|
|
25108
|
+
break;
|
|
25109
|
+
default:
|
|
25110
|
+
reader.skipField();
|
|
25111
|
+
break;
|
|
25112
|
+
}
|
|
25113
|
+
}
|
|
25114
|
+
return msg;
|
|
25115
|
+
};
|
|
25116
|
+
|
|
25117
|
+
|
|
25118
|
+
/**
|
|
25119
|
+
* Class method variant: serializes the given message to binary data
|
|
25120
|
+
* (in protobuf wire format), writing to the given BinaryWriter.
|
|
25121
|
+
* @param {!proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest} message
|
|
25122
|
+
* @param {!jspb.BinaryWriter} writer
|
|
25123
|
+
*/
|
|
25124
|
+
proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.serializeBinaryToWriter = function(message, writer) {
|
|
25125
|
+
message.serializeBinaryToWriter(writer);
|
|
25126
|
+
};
|
|
25127
|
+
|
|
25128
|
+
|
|
25129
|
+
/**
|
|
25130
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
25131
|
+
* @return {!Uint8Array}
|
|
25132
|
+
*/
|
|
25133
|
+
proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.prototype.serializeBinary = function() {
|
|
25134
|
+
var writer = new jspb.BinaryWriter();
|
|
25135
|
+
this.serializeBinaryToWriter(writer);
|
|
25136
|
+
return writer.getResultBuffer();
|
|
25137
|
+
};
|
|
25138
|
+
|
|
25139
|
+
|
|
25140
|
+
/**
|
|
25141
|
+
* Serializes the message to binary data (in protobuf wire format),
|
|
25142
|
+
* writing to the given BinaryWriter.
|
|
25143
|
+
* @param {!jspb.BinaryWriter} writer
|
|
25144
|
+
*/
|
|
25145
|
+
proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.prototype.serializeBinaryToWriter = function (writer) {
|
|
25146
|
+
var f = undefined;
|
|
25147
|
+
f = this.getBillerconfigidsList();
|
|
25148
|
+
if (f.length > 0) {
|
|
25149
|
+
writer.writePackedInt64(
|
|
25150
|
+
1,
|
|
25151
|
+
f
|
|
25152
|
+
);
|
|
25153
|
+
}
|
|
25154
|
+
};
|
|
25155
|
+
|
|
25156
|
+
|
|
25157
|
+
/**
|
|
25158
|
+
* Creates a deep clone of this proto. No data is shared with the original.
|
|
25159
|
+
* @return {!proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest} The clone.
|
|
25160
|
+
*/
|
|
25161
|
+
proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.prototype.cloneMessage = function() {
|
|
25162
|
+
return /** @type {!proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest} */ (jspb.Message.cloneMessage(this));
|
|
25163
|
+
};
|
|
25164
|
+
|
|
25165
|
+
|
|
25166
|
+
/**
|
|
25167
|
+
* repeated int64 billerConfigIds = 1;
|
|
25168
|
+
* If you change this array by adding, removing or replacing elements, or if you
|
|
25169
|
+
* replace the array itself, then you must call the setter to update it.
|
|
25170
|
+
* @return {!Array.<number>}
|
|
25171
|
+
*/
|
|
25172
|
+
proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.prototype.getBillerconfigidsList = function() {
|
|
25173
|
+
return /** @type {!Array.<number>} */ (jspb.Message.getField(this, 1));
|
|
25174
|
+
};
|
|
25175
|
+
|
|
25176
|
+
|
|
25177
|
+
/** @param {Array.<number>} value */
|
|
25178
|
+
proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.prototype.setBillerconfigidsList = function(value) {
|
|
25179
|
+
jspb.Message.setField(this, 1, value || []);
|
|
25180
|
+
};
|
|
25181
|
+
|
|
25182
|
+
|
|
25183
|
+
proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.prototype.clearBillerconfigidsList = function() {
|
|
25184
|
+
jspb.Message.setField(this, 1, []);
|
|
25185
|
+
};
|
|
25186
|
+
|
|
25187
|
+
|
|
25188
|
+
|
|
25015
25189
|
/**
|
|
25016
25190
|
* Generated by JsPbCodeGenerator.
|
|
25017
25191
|
* @param {Array=} opt_data Optional initial data array, typically from a
|