@sniipwebmaster/realtime-message-client-grpcweb 21.23.199 → 21.23.215

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.
@@ -23,6 +23,7 @@ goog.exportSymbol('proto.realtimemessageapi.Event', null, global);
23
23
  goog.exportSymbol('proto.realtimemessageapi.EventType', null, global);
24
24
  goog.exportSymbol('proto.realtimemessageapi.GetBannersData', null, global);
25
25
  goog.exportSymbol('proto.realtimemessageapi.GetBannersRequest', null, global);
26
+ goog.exportSymbol('proto.realtimemessageapi.PendingUploadDeliveryUpdate', null, global);
26
27
  goog.exportSymbol('proto.realtimemessageapi.PostRequest', null, global);
27
28
  goog.exportSymbol('proto.realtimemessageapi.ResponseCode', null, global);
28
29
  goog.exportSymbol('proto.realtimemessageapi.SubscribeType', null, global);
@@ -373,6 +374,219 @@ proto.realtimemessageapi.PostRequest.prototype.setValue = function(value) {
373
374
 
374
375
 
375
376
 
377
+ /**
378
+ * Generated by JsPbCodeGenerator.
379
+ * @param {Array=} opt_data Optional initial data array, typically from a
380
+ * server response, or constructed directly in Javascript. The array is used
381
+ * in place and becomes part of the constructed object. It is not cloned.
382
+ * If no data is provided, the constructed object will be empty, but still
383
+ * valid.
384
+ * @extends {jspb.Message}
385
+ * @constructor
386
+ */
387
+ proto.realtimemessageapi.PendingUploadDeliveryUpdate = function(opt_data) {
388
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
389
+ };
390
+ goog.inherits(proto.realtimemessageapi.PendingUploadDeliveryUpdate, jspb.Message);
391
+ if (goog.DEBUG && !COMPILED) {
392
+ proto.realtimemessageapi.PendingUploadDeliveryUpdate.displayName = 'proto.realtimemessageapi.PendingUploadDeliveryUpdate';
393
+ }
394
+
395
+
396
+ if (jspb.Message.GENERATE_TO_OBJECT) {
397
+ /**
398
+ * Creates an object representation of this proto suitable for use in Soy templates.
399
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
400
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
401
+ * For the list of reserved names please see:
402
+ * com.google.apps.jspb.JsClassTemplate.JS_RESERVED_WORDS.
403
+ * @param {boolean=} opt_includeInstance Whether to include the JSPB instance
404
+ * for transitional soy proto support: http://goto/soy-param-migration
405
+ * @return {!Object}
406
+ */
407
+ proto.realtimemessageapi.PendingUploadDeliveryUpdate.prototype.toObject = function(opt_includeInstance) {
408
+ return proto.realtimemessageapi.PendingUploadDeliveryUpdate.toObject(opt_includeInstance, this);
409
+ };
410
+
411
+
412
+ /**
413
+ * Static version of the {@see toObject} method.
414
+ * @param {boolean|undefined} includeInstance Whether to include the JSPB
415
+ * instance for transitional soy proto support:
416
+ * http://goto/soy-param-migration
417
+ * @param {!proto.realtimemessageapi.PendingUploadDeliveryUpdate} msg The msg instance to transform.
418
+ * @return {!Object}
419
+ */
420
+ proto.realtimemessageapi.PendingUploadDeliveryUpdate.toObject = function(includeInstance, msg) {
421
+ var f, obj = {
422
+ deliveryid: msg.getDeliveryid(),
423
+ processingbillscount: msg.getProcessingbillscount(),
424
+ readyforreviewbillscount: msg.getReadyforreviewbillscount()
425
+ };
426
+
427
+ if (includeInstance) {
428
+ obj.$jspbMessageInstance = msg;
429
+ }
430
+ return obj;
431
+ };
432
+ }
433
+
434
+
435
+ /**
436
+ * Deserializes binary data (in protobuf wire format).
437
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
438
+ * @return {!proto.realtimemessageapi.PendingUploadDeliveryUpdate}
439
+ */
440
+ proto.realtimemessageapi.PendingUploadDeliveryUpdate.deserializeBinary = function(bytes) {
441
+ var reader = new jspb.BinaryReader(bytes);
442
+ var msg = new proto.realtimemessageapi.PendingUploadDeliveryUpdate;
443
+ return proto.realtimemessageapi.PendingUploadDeliveryUpdate.deserializeBinaryFromReader(msg, reader);
444
+ };
445
+
446
+
447
+ /**
448
+ * Deserializes binary data (in protobuf wire format) from the
449
+ * given reader into the given message object.
450
+ * @param {!proto.realtimemessageapi.PendingUploadDeliveryUpdate} msg The message object to deserialize into.
451
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
452
+ * @return {!proto.realtimemessageapi.PendingUploadDeliveryUpdate}
453
+ */
454
+ proto.realtimemessageapi.PendingUploadDeliveryUpdate.deserializeBinaryFromReader = function(msg, reader) {
455
+ while (reader.nextField()) {
456
+ if (reader.isEndGroup()) {
457
+ break;
458
+ }
459
+ var field = reader.getFieldNumber();
460
+ switch (field) {
461
+ case 1:
462
+ var value = /** @type {number} */ (reader.readInt64());
463
+ msg.setDeliveryid(value);
464
+ break;
465
+ case 2:
466
+ var value = /** @type {number} */ (reader.readInt32());
467
+ msg.setProcessingbillscount(value);
468
+ break;
469
+ case 3:
470
+ var value = /** @type {number} */ (reader.readInt32());
471
+ msg.setReadyforreviewbillscount(value);
472
+ break;
473
+ default:
474
+ reader.skipField();
475
+ break;
476
+ }
477
+ }
478
+ return msg;
479
+ };
480
+
481
+
482
+ /**
483
+ * Class method variant: serializes the given message to binary data
484
+ * (in protobuf wire format), writing to the given BinaryWriter.
485
+ * @param {!proto.realtimemessageapi.PendingUploadDeliveryUpdate} message
486
+ * @param {!jspb.BinaryWriter} writer
487
+ */
488
+ proto.realtimemessageapi.PendingUploadDeliveryUpdate.serializeBinaryToWriter = function(message, writer) {
489
+ message.serializeBinaryToWriter(writer);
490
+ };
491
+
492
+
493
+ /**
494
+ * Serializes the message to binary data (in protobuf wire format).
495
+ * @return {!Uint8Array}
496
+ */
497
+ proto.realtimemessageapi.PendingUploadDeliveryUpdate.prototype.serializeBinary = function() {
498
+ var writer = new jspb.BinaryWriter();
499
+ this.serializeBinaryToWriter(writer);
500
+ return writer.getResultBuffer();
501
+ };
502
+
503
+
504
+ /**
505
+ * Serializes the message to binary data (in protobuf wire format),
506
+ * writing to the given BinaryWriter.
507
+ * @param {!jspb.BinaryWriter} writer
508
+ */
509
+ proto.realtimemessageapi.PendingUploadDeliveryUpdate.prototype.serializeBinaryToWriter = function (writer) {
510
+ var f = undefined;
511
+ f = this.getDeliveryid();
512
+ if (f !== 0) {
513
+ writer.writeInt64(
514
+ 1,
515
+ f
516
+ );
517
+ }
518
+ f = this.getProcessingbillscount();
519
+ if (f !== 0) {
520
+ writer.writeInt32(
521
+ 2,
522
+ f
523
+ );
524
+ }
525
+ f = this.getReadyforreviewbillscount();
526
+ if (f !== 0) {
527
+ writer.writeInt32(
528
+ 3,
529
+ f
530
+ );
531
+ }
532
+ };
533
+
534
+
535
+ /**
536
+ * Creates a deep clone of this proto. No data is shared with the original.
537
+ * @return {!proto.realtimemessageapi.PendingUploadDeliveryUpdate} The clone.
538
+ */
539
+ proto.realtimemessageapi.PendingUploadDeliveryUpdate.prototype.cloneMessage = function() {
540
+ return /** @type {!proto.realtimemessageapi.PendingUploadDeliveryUpdate} */ (jspb.Message.cloneMessage(this));
541
+ };
542
+
543
+
544
+ /**
545
+ * optional int64 deliveryId = 1;
546
+ * @return {number}
547
+ */
548
+ proto.realtimemessageapi.PendingUploadDeliveryUpdate.prototype.getDeliveryid = function() {
549
+ return /** @type {number} */ (jspb.Message.getFieldProto3(this, 1, 0));
550
+ };
551
+
552
+
553
+ /** @param {number} value */
554
+ proto.realtimemessageapi.PendingUploadDeliveryUpdate.prototype.setDeliveryid = function(value) {
555
+ jspb.Message.setField(this, 1, value);
556
+ };
557
+
558
+
559
+ /**
560
+ * optional int32 processingBillsCount = 2;
561
+ * @return {number}
562
+ */
563
+ proto.realtimemessageapi.PendingUploadDeliveryUpdate.prototype.getProcessingbillscount = function() {
564
+ return /** @type {number} */ (jspb.Message.getFieldProto3(this, 2, 0));
565
+ };
566
+
567
+
568
+ /** @param {number} value */
569
+ proto.realtimemessageapi.PendingUploadDeliveryUpdate.prototype.setProcessingbillscount = function(value) {
570
+ jspb.Message.setField(this, 2, value);
571
+ };
572
+
573
+
574
+ /**
575
+ * optional int32 readyForReviewBillsCount = 3;
576
+ * @return {number}
577
+ */
578
+ proto.realtimemessageapi.PendingUploadDeliveryUpdate.prototype.getReadyforreviewbillscount = function() {
579
+ return /** @type {number} */ (jspb.Message.getFieldProto3(this, 3, 0));
580
+ };
581
+
582
+
583
+ /** @param {number} value */
584
+ proto.realtimemessageapi.PendingUploadDeliveryUpdate.prototype.setReadyforreviewbillscount = function(value) {
585
+ jspb.Message.setField(this, 3, value);
586
+ };
587
+
588
+
589
+
376
590
  /**
377
591
  * Generated by JsPbCodeGenerator.
378
592
  * @param {Array=} opt_data Optional initial data array, typically from a
@@ -3886,7 +4100,8 @@ proto.realtimemessageapi.EventType = {
3886
4100
  BILL_PAID: 0,
3887
4101
  TRANSACTION_FAILED: 1,
3888
4102
  BULK_PAYMENT_UPDATED: 2,
3889
- ALL_BILLS_PROCESSED_BY_IMPORT: 3
4103
+ ALL_BILLS_PROCESSED_BY_IMPORT: 3,
4104
+ PENDING_UPLOAD_MBILL_DELIVERY_STATUS_UPDATED: 4
3890
4105
  };
3891
4106
 
3892
4107
  goog.object.extend(exports, proto.realtimemessageapi);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sniipwebmaster/realtime-message-client-grpcweb",
3
- "version": "21.23.199",
3
+ "version": "21.23.215",
4
4
  "description": "realtime-message-client-grpcweb",
5
5
  "author": "Sniip Development Team",
6
6
  "license": "MIT",