@sniipwebmaster/biller-service-client-grpcweb 23.2.5505 → 23.2.5533

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);
@@ -15071,7 +15072,8 @@ proto.sniipbillerapi.BillerWithSmeConfigsInReviewResponse.toObject = function(in
15071
15072
  industrysectorname: msg.getIndustrysectorname(),
15072
15073
  logo: msg.getLogo(),
15073
15074
  approvedconfigcount: msg.getApprovedconfigcount(),
15074
- inreviewconfigcount: msg.getInreviewconfigcount()
15075
+ inreviewconfigcount: msg.getInreviewconfigcount(),
15076
+ blockedconfigcount: msg.getBlockedconfigcount()
15075
15077
  };
15076
15078
 
15077
15079
  if (includeInstance) {
@@ -15140,6 +15142,10 @@ proto.sniipbillerapi.BillerWithSmeConfigsInReviewResponse.deserializeBinaryFromR
15140
15142
  var value = /** @type {number} */ (reader.readInt32());
15141
15143
  msg.setInreviewconfigcount(value);
15142
15144
  break;
15145
+ case 9:
15146
+ var value = /** @type {number} */ (reader.readInt32());
15147
+ msg.setBlockedconfigcount(value);
15148
+ break;
15143
15149
  default:
15144
15150
  reader.skipField();
15145
15151
  break;
@@ -15234,6 +15240,13 @@ proto.sniipbillerapi.BillerWithSmeConfigsInReviewResponse.prototype.serializeBin
15234
15240
  f
15235
15241
  );
15236
15242
  }
15243
+ f = this.getBlockedconfigcount();
15244
+ if (f !== 0) {
15245
+ writer.writeInt32(
15246
+ 9,
15247
+ f
15248
+ );
15249
+ }
15237
15250
  };
15238
15251
 
15239
15252
 
@@ -15366,6 +15379,21 @@ proto.sniipbillerapi.BillerWithSmeConfigsInReviewResponse.prototype.setInreviewc
15366
15379
  };
15367
15380
 
15368
15381
 
15382
+ /**
15383
+ * optional int32 blockedConfigCount = 9;
15384
+ * @return {number}
15385
+ */
15386
+ proto.sniipbillerapi.BillerWithSmeConfigsInReviewResponse.prototype.getBlockedconfigcount = function() {
15387
+ return /** @type {number} */ (jspb.Message.getFieldProto3(this, 9, 0));
15388
+ };
15389
+
15390
+
15391
+ /** @param {number} value */
15392
+ proto.sniipbillerapi.BillerWithSmeConfigsInReviewResponse.prototype.setBlockedconfigcount = function(value) {
15393
+ jspb.Message.setField(this, 9, value);
15394
+ };
15395
+
15396
+
15369
15397
 
15370
15398
  /**
15371
15399
  * Generated by JsPbCodeGenerator.
@@ -25012,6 +25040,179 @@ proto.sniipbillerapi.GetBillersAllRequest.prototype.hasData = function() {
25012
25040
 
25013
25041
 
25014
25042
 
25043
+ /**
25044
+ * Generated by JsPbCodeGenerator.
25045
+ * @param {Array=} opt_data Optional initial data array, typically from a
25046
+ * server response, or constructed directly in Javascript. The array is used
25047
+ * in place and becomes part of the constructed object. It is not cloned.
25048
+ * If no data is provided, the constructed object will be empty, but still
25049
+ * valid.
25050
+ * @extends {jspb.Message}
25051
+ * @constructor
25052
+ */
25053
+ proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest = function(opt_data) {
25054
+ jspb.Message.initialize(this, opt_data, 0, -1, proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.repeatedFields_, null);
25055
+ };
25056
+ goog.inherits(proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest, jspb.Message);
25057
+ if (goog.DEBUG && !COMPILED) {
25058
+ proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.displayName = 'proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest';
25059
+ }
25060
+ /**
25061
+ * List of repeated fields within this message type.
25062
+ * @private {!Array<number>}
25063
+ * @const
25064
+ */
25065
+ proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.repeatedFields_ = [1];
25066
+
25067
+
25068
+
25069
+ if (jspb.Message.GENERATE_TO_OBJECT) {
25070
+ /**
25071
+ * Creates an object representation of this proto suitable for use in Soy templates.
25072
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
25073
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
25074
+ * For the list of reserved names please see:
25075
+ * com.google.apps.jspb.JsClassTemplate.JS_RESERVED_WORDS.
25076
+ * @param {boolean=} opt_includeInstance Whether to include the JSPB instance
25077
+ * for transitional soy proto support: http://goto/soy-param-migration
25078
+ * @return {!Object}
25079
+ */
25080
+ proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.prototype.toObject = function(opt_includeInstance) {
25081
+ return proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.toObject(opt_includeInstance, this);
25082
+ };
25083
+
25084
+
25085
+ /**
25086
+ * Static version of the {@see toObject} method.
25087
+ * @param {boolean|undefined} includeInstance Whether to include the JSPB
25088
+ * instance for transitional soy proto support:
25089
+ * http://goto/soy-param-migration
25090
+ * @param {!proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest} msg The msg instance to transform.
25091
+ * @return {!Object}
25092
+ */
25093
+ proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.toObject = function(includeInstance, msg) {
25094
+ var f, obj = {
25095
+ billerconfigidsList: jspb.Message.getField(msg, 1)
25096
+ };
25097
+
25098
+ if (includeInstance) {
25099
+ obj.$jspbMessageInstance = msg;
25100
+ }
25101
+ return obj;
25102
+ };
25103
+ }
25104
+
25105
+
25106
+ /**
25107
+ * Deserializes binary data (in protobuf wire format).
25108
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
25109
+ * @return {!proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest}
25110
+ */
25111
+ proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.deserializeBinary = function(bytes) {
25112
+ var reader = new jspb.BinaryReader(bytes);
25113
+ var msg = new proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest;
25114
+ return proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.deserializeBinaryFromReader(msg, reader);
25115
+ };
25116
+
25117
+
25118
+ /**
25119
+ * Deserializes binary data (in protobuf wire format) from the
25120
+ * given reader into the given message object.
25121
+ * @param {!proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest} msg The message object to deserialize into.
25122
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
25123
+ * @return {!proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest}
25124
+ */
25125
+ proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.deserializeBinaryFromReader = function(msg, reader) {
25126
+ while (reader.nextField()) {
25127
+ if (reader.isEndGroup()) {
25128
+ break;
25129
+ }
25130
+ var field = reader.getFieldNumber();
25131
+ switch (field) {
25132
+ case 1:
25133
+ var value = /** @type {!Array.<number>} */ (reader.readPackedInt64());
25134
+ msg.setBillerconfigidsList(value);
25135
+ break;
25136
+ default:
25137
+ reader.skipField();
25138
+ break;
25139
+ }
25140
+ }
25141
+ return msg;
25142
+ };
25143
+
25144
+
25145
+ /**
25146
+ * Class method variant: serializes the given message to binary data
25147
+ * (in protobuf wire format), writing to the given BinaryWriter.
25148
+ * @param {!proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest} message
25149
+ * @param {!jspb.BinaryWriter} writer
25150
+ */
25151
+ proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.serializeBinaryToWriter = function(message, writer) {
25152
+ message.serializeBinaryToWriter(writer);
25153
+ };
25154
+
25155
+
25156
+ /**
25157
+ * Serializes the message to binary data (in protobuf wire format).
25158
+ * @return {!Uint8Array}
25159
+ */
25160
+ proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.prototype.serializeBinary = function() {
25161
+ var writer = new jspb.BinaryWriter();
25162
+ this.serializeBinaryToWriter(writer);
25163
+ return writer.getResultBuffer();
25164
+ };
25165
+
25166
+
25167
+ /**
25168
+ * Serializes the message to binary data (in protobuf wire format),
25169
+ * writing to the given BinaryWriter.
25170
+ * @param {!jspb.BinaryWriter} writer
25171
+ */
25172
+ proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.prototype.serializeBinaryToWriter = function (writer) {
25173
+ var f = undefined;
25174
+ f = this.getBillerconfigidsList();
25175
+ if (f.length > 0) {
25176
+ writer.writePackedInt64(
25177
+ 1,
25178
+ f
25179
+ );
25180
+ }
25181
+ };
25182
+
25183
+
25184
+ /**
25185
+ * Creates a deep clone of this proto. No data is shared with the original.
25186
+ * @return {!proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest} The clone.
25187
+ */
25188
+ proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.prototype.cloneMessage = function() {
25189
+ return /** @type {!proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest} */ (jspb.Message.cloneMessage(this));
25190
+ };
25191
+
25192
+
25193
+ /**
25194
+ * repeated int64 billerConfigIds = 1;
25195
+ * If you change this array by adding, removing or replacing elements, or if you
25196
+ * replace the array itself, then you must call the setter to update it.
25197
+ * @return {!Array.<number>}
25198
+ */
25199
+ proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.prototype.getBillerconfigidsList = function() {
25200
+ return /** @type {!Array.<number>} */ (jspb.Message.getField(this, 1));
25201
+ };
25202
+
25203
+
25204
+ /** @param {Array.<number>} value */
25205
+ proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.prototype.setBillerconfigidsList = function(value) {
25206
+ jspb.Message.setField(this, 1, value || []);
25207
+ };
25208
+
25209
+
25210
+ proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.prototype.clearBillerconfigidsList = function() {
25211
+ jspb.Message.setField(this, 1, []);
25212
+ };
25213
+
25214
+
25215
+
25015
25216
  /**
25016
25217
  * Generated by JsPbCodeGenerator.
25017
25218
  * @param {Array=} opt_data Optional initial data array, typically from a
@@ -38954,9 +39155,7 @@ proto.sniipbillerapi.UpdateSmeBillerConfigRequest.toObject = function(includeIns
38954
39155
  minamountpermitted: msg.getMinamountpermitted(),
38955
39156
  maxamountpermitted: msg.getMaxamountpermitted(),
38956
39157
  overpaymentpermitted: msg.getOverpaymentpermitted(),
38957
- isactive: msg.getIsactive(),
38958
- isblocked: msg.getIsblocked(),
38959
- requiresreview: msg.getRequiresreview()
39158
+ isapproved: msg.getIsapproved()
38960
39159
  };
38961
39160
 
38962
39161
  if (includeInstance) {
@@ -39035,15 +39234,7 @@ proto.sniipbillerapi.UpdateSmeBillerConfigRequest.deserializeBinaryFromReader =
39035
39234
  break;
39036
39235
  case 11:
39037
39236
  var value = /** @type {boolean} */ (reader.readBool());
39038
- msg.setIsactive(value);
39039
- break;
39040
- case 12:
39041
- var value = /** @type {boolean} */ (reader.readBool());
39042
- msg.setIsblocked(value);
39043
- break;
39044
- case 13:
39045
- var value = /** @type {boolean} */ (reader.readBool());
39046
- msg.setRequiresreview(value);
39237
+ msg.setIsapproved(value);
39047
39238
  break;
39048
39239
  default:
39049
39240
  reader.skipField();
@@ -39153,27 +39344,13 @@ proto.sniipbillerapi.UpdateSmeBillerConfigRequest.prototype.serializeBinaryToWri
39153
39344
  f
39154
39345
  );
39155
39346
  }
39156
- f = this.getIsactive();
39347
+ f = this.getIsapproved();
39157
39348
  if (f) {
39158
39349
  writer.writeBool(
39159
39350
  11,
39160
39351
  f
39161
39352
  );
39162
39353
  }
39163
- f = this.getIsblocked();
39164
- if (f) {
39165
- writer.writeBool(
39166
- 12,
39167
- f
39168
- );
39169
- }
39170
- f = this.getRequiresreview();
39171
- if (f) {
39172
- writer.writeBool(
39173
- 13,
39174
- f
39175
- );
39176
- }
39177
39354
  };
39178
39355
 
39179
39356
 
@@ -39343,56 +39520,22 @@ proto.sniipbillerapi.UpdateSmeBillerConfigRequest.prototype.setOverpaymentpermit
39343
39520
 
39344
39521
 
39345
39522
  /**
39346
- * optional bool isActive = 11;
39523
+ * optional bool isApproved = 11;
39347
39524
  * Note that Boolean fields may be set to 0/1 when serialized from a Java server.
39348
39525
  * You should avoid comparisons like {@code val === true/false} in those cases.
39349
39526
  * @return {boolean}
39350
39527
  */
39351
- proto.sniipbillerapi.UpdateSmeBillerConfigRequest.prototype.getIsactive = function() {
39528
+ proto.sniipbillerapi.UpdateSmeBillerConfigRequest.prototype.getIsapproved = function() {
39352
39529
  return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 11, false));
39353
39530
  };
39354
39531
 
39355
39532
 
39356
39533
  /** @param {boolean} value */
39357
- proto.sniipbillerapi.UpdateSmeBillerConfigRequest.prototype.setIsactive = function(value) {
39534
+ proto.sniipbillerapi.UpdateSmeBillerConfigRequest.prototype.setIsapproved = function(value) {
39358
39535
  jspb.Message.setField(this, 11, value);
39359
39536
  };
39360
39537
 
39361
39538
 
39362
- /**
39363
- * optional bool isBlocked = 12;
39364
- * Note that Boolean fields may be set to 0/1 when serialized from a Java server.
39365
- * You should avoid comparisons like {@code val === true/false} in those cases.
39366
- * @return {boolean}
39367
- */
39368
- proto.sniipbillerapi.UpdateSmeBillerConfigRequest.prototype.getIsblocked = function() {
39369
- return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 12, false));
39370
- };
39371
-
39372
-
39373
- /** @param {boolean} value */
39374
- proto.sniipbillerapi.UpdateSmeBillerConfigRequest.prototype.setIsblocked = function(value) {
39375
- jspb.Message.setField(this, 12, value);
39376
- };
39377
-
39378
-
39379
- /**
39380
- * optional bool requiresReview = 13;
39381
- * Note that Boolean fields may be set to 0/1 when serialized from a Java server.
39382
- * You should avoid comparisons like {@code val === true/false} in those cases.
39383
- * @return {boolean}
39384
- */
39385
- proto.sniipbillerapi.UpdateSmeBillerConfigRequest.prototype.getRequiresreview = function() {
39386
- return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 13, false));
39387
- };
39388
-
39389
-
39390
- /** @param {boolean} value */
39391
- proto.sniipbillerapi.UpdateSmeBillerConfigRequest.prototype.setRequiresreview = function(value) {
39392
- jspb.Message.setField(this, 13, value);
39393
- };
39394
-
39395
-
39396
39539
 
39397
39540
  /**
39398
39541
  * Generated by JsPbCodeGenerator.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sniipwebmaster/biller-service-client-grpcweb",
3
- "version": "23.2.5505",
3
+ "version": "23.2.5533",
4
4
  "description": "biller-service-client-grpcweb",
5
5
  "author": "Sniip Development Team",
6
6
  "license": "MIT",