@sniipwebmaster/realtime-message-client-grpcweb 22.15.425 → 22.15.433

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.
@@ -16,6 +16,8 @@ goog.exportSymbol('proto.realtimemessageapi.AllBillsProcessedByImport', null, gl
16
16
  goog.exportSymbol('proto.realtimemessageapi.AttachmentInfo', null, global);
17
17
  goog.exportSymbol('proto.realtimemessageapi.BannersResponse', null, global);
18
18
  goog.exportSymbol('proto.realtimemessageapi.BillPaid', null, global);
19
+ goog.exportSymbol('proto.realtimemessageapi.BillProcessedByImportFailedEvent', null, global);
20
+ goog.exportSymbol('proto.realtimemessageapi.BillProcessedByImportSuccessEvent', null, global);
19
21
  goog.exportSymbol('proto.realtimemessageapi.BulkPaymentSummary', null, global);
20
22
  goog.exportSymbol('proto.realtimemessageapi.BulkPaymentTaskSummary', null, global);
21
23
  goog.exportSymbol('proto.realtimemessageapi.BulkPaymentTaskUpdate', null, global);
@@ -5086,6 +5088,324 @@ proto.realtimemessageapi.ImportItemFailureEvent.prototype.setHaskeywords = funct
5086
5088
  };
5087
5089
 
5088
5090
 
5091
+
5092
+ /**
5093
+ * Generated by JsPbCodeGenerator.
5094
+ * @param {Array=} opt_data Optional initial data array, typically from a
5095
+ * server response, or constructed directly in Javascript. The array is used
5096
+ * in place and becomes part of the constructed object. It is not cloned.
5097
+ * If no data is provided, the constructed object will be empty, but still
5098
+ * valid.
5099
+ * @extends {jspb.Message}
5100
+ * @constructor
5101
+ */
5102
+ proto.realtimemessageapi.BillProcessedByImportFailedEvent = function(opt_data) {
5103
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
5104
+ };
5105
+ goog.inherits(proto.realtimemessageapi.BillProcessedByImportFailedEvent, jspb.Message);
5106
+ if (goog.DEBUG && !COMPILED) {
5107
+ proto.realtimemessageapi.BillProcessedByImportFailedEvent.displayName = 'proto.realtimemessageapi.BillProcessedByImportFailedEvent';
5108
+ }
5109
+
5110
+
5111
+ if (jspb.Message.GENERATE_TO_OBJECT) {
5112
+ /**
5113
+ * Creates an object representation of this proto suitable for use in Soy templates.
5114
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
5115
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
5116
+ * For the list of reserved names please see:
5117
+ * com.google.apps.jspb.JsClassTemplate.JS_RESERVED_WORDS.
5118
+ * @param {boolean=} opt_includeInstance Whether to include the JSPB instance
5119
+ * for transitional soy proto support: http://goto/soy-param-migration
5120
+ * @return {!Object}
5121
+ */
5122
+ proto.realtimemessageapi.BillProcessedByImportFailedEvent.prototype.toObject = function(opt_includeInstance) {
5123
+ return proto.realtimemessageapi.BillProcessedByImportFailedEvent.toObject(opt_includeInstance, this);
5124
+ };
5125
+
5126
+
5127
+ /**
5128
+ * Static version of the {@see toObject} method.
5129
+ * @param {boolean|undefined} includeInstance Whether to include the JSPB
5130
+ * instance for transitional soy proto support:
5131
+ * http://goto/soy-param-migration
5132
+ * @param {!proto.realtimemessageapi.BillProcessedByImportFailedEvent} msg The msg instance to transform.
5133
+ * @return {!Object}
5134
+ */
5135
+ proto.realtimemessageapi.BillProcessedByImportFailedEvent.toObject = function(includeInstance, msg) {
5136
+ var f, obj = {
5137
+ attachmentid: msg.getAttachmentid()
5138
+ };
5139
+
5140
+ if (includeInstance) {
5141
+ obj.$jspbMessageInstance = msg;
5142
+ }
5143
+ return obj;
5144
+ };
5145
+ }
5146
+
5147
+
5148
+ /**
5149
+ * Deserializes binary data (in protobuf wire format).
5150
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
5151
+ * @return {!proto.realtimemessageapi.BillProcessedByImportFailedEvent}
5152
+ */
5153
+ proto.realtimemessageapi.BillProcessedByImportFailedEvent.deserializeBinary = function(bytes) {
5154
+ var reader = new jspb.BinaryReader(bytes);
5155
+ var msg = new proto.realtimemessageapi.BillProcessedByImportFailedEvent;
5156
+ return proto.realtimemessageapi.BillProcessedByImportFailedEvent.deserializeBinaryFromReader(msg, reader);
5157
+ };
5158
+
5159
+
5160
+ /**
5161
+ * Deserializes binary data (in protobuf wire format) from the
5162
+ * given reader into the given message object.
5163
+ * @param {!proto.realtimemessageapi.BillProcessedByImportFailedEvent} msg The message object to deserialize into.
5164
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
5165
+ * @return {!proto.realtimemessageapi.BillProcessedByImportFailedEvent}
5166
+ */
5167
+ proto.realtimemessageapi.BillProcessedByImportFailedEvent.deserializeBinaryFromReader = function(msg, reader) {
5168
+ while (reader.nextField()) {
5169
+ if (reader.isEndGroup()) {
5170
+ break;
5171
+ }
5172
+ var field = reader.getFieldNumber();
5173
+ switch (field) {
5174
+ case 1:
5175
+ var value = /** @type {number} */ (reader.readInt64());
5176
+ msg.setAttachmentid(value);
5177
+ break;
5178
+ default:
5179
+ reader.skipField();
5180
+ break;
5181
+ }
5182
+ }
5183
+ return msg;
5184
+ };
5185
+
5186
+
5187
+ /**
5188
+ * Class method variant: serializes the given message to binary data
5189
+ * (in protobuf wire format), writing to the given BinaryWriter.
5190
+ * @param {!proto.realtimemessageapi.BillProcessedByImportFailedEvent} message
5191
+ * @param {!jspb.BinaryWriter} writer
5192
+ */
5193
+ proto.realtimemessageapi.BillProcessedByImportFailedEvent.serializeBinaryToWriter = function(message, writer) {
5194
+ message.serializeBinaryToWriter(writer);
5195
+ };
5196
+
5197
+
5198
+ /**
5199
+ * Serializes the message to binary data (in protobuf wire format).
5200
+ * @return {!Uint8Array}
5201
+ */
5202
+ proto.realtimemessageapi.BillProcessedByImportFailedEvent.prototype.serializeBinary = function() {
5203
+ var writer = new jspb.BinaryWriter();
5204
+ this.serializeBinaryToWriter(writer);
5205
+ return writer.getResultBuffer();
5206
+ };
5207
+
5208
+
5209
+ /**
5210
+ * Serializes the message to binary data (in protobuf wire format),
5211
+ * writing to the given BinaryWriter.
5212
+ * @param {!jspb.BinaryWriter} writer
5213
+ */
5214
+ proto.realtimemessageapi.BillProcessedByImportFailedEvent.prototype.serializeBinaryToWriter = function (writer) {
5215
+ var f = undefined;
5216
+ f = this.getAttachmentid();
5217
+ if (f !== 0) {
5218
+ writer.writeInt64(
5219
+ 1,
5220
+ f
5221
+ );
5222
+ }
5223
+ };
5224
+
5225
+
5226
+ /**
5227
+ * Creates a deep clone of this proto. No data is shared with the original.
5228
+ * @return {!proto.realtimemessageapi.BillProcessedByImportFailedEvent} The clone.
5229
+ */
5230
+ proto.realtimemessageapi.BillProcessedByImportFailedEvent.prototype.cloneMessage = function() {
5231
+ return /** @type {!proto.realtimemessageapi.BillProcessedByImportFailedEvent} */ (jspb.Message.cloneMessage(this));
5232
+ };
5233
+
5234
+
5235
+ /**
5236
+ * optional int64 AttachmentId = 1;
5237
+ * @return {number}
5238
+ */
5239
+ proto.realtimemessageapi.BillProcessedByImportFailedEvent.prototype.getAttachmentid = function() {
5240
+ return /** @type {number} */ (jspb.Message.getFieldProto3(this, 1, 0));
5241
+ };
5242
+
5243
+
5244
+ /** @param {number} value */
5245
+ proto.realtimemessageapi.BillProcessedByImportFailedEvent.prototype.setAttachmentid = function(value) {
5246
+ jspb.Message.setField(this, 1, value);
5247
+ };
5248
+
5249
+
5250
+
5251
+ /**
5252
+ * Generated by JsPbCodeGenerator.
5253
+ * @param {Array=} opt_data Optional initial data array, typically from a
5254
+ * server response, or constructed directly in Javascript. The array is used
5255
+ * in place and becomes part of the constructed object. It is not cloned.
5256
+ * If no data is provided, the constructed object will be empty, but still
5257
+ * valid.
5258
+ * @extends {jspb.Message}
5259
+ * @constructor
5260
+ */
5261
+ proto.realtimemessageapi.BillProcessedByImportSuccessEvent = function(opt_data) {
5262
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
5263
+ };
5264
+ goog.inherits(proto.realtimemessageapi.BillProcessedByImportSuccessEvent, jspb.Message);
5265
+ if (goog.DEBUG && !COMPILED) {
5266
+ proto.realtimemessageapi.BillProcessedByImportSuccessEvent.displayName = 'proto.realtimemessageapi.BillProcessedByImportSuccessEvent';
5267
+ }
5268
+
5269
+
5270
+ if (jspb.Message.GENERATE_TO_OBJECT) {
5271
+ /**
5272
+ * Creates an object representation of this proto suitable for use in Soy templates.
5273
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
5274
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
5275
+ * For the list of reserved names please see:
5276
+ * com.google.apps.jspb.JsClassTemplate.JS_RESERVED_WORDS.
5277
+ * @param {boolean=} opt_includeInstance Whether to include the JSPB instance
5278
+ * for transitional soy proto support: http://goto/soy-param-migration
5279
+ * @return {!Object}
5280
+ */
5281
+ proto.realtimemessageapi.BillProcessedByImportSuccessEvent.prototype.toObject = function(opt_includeInstance) {
5282
+ return proto.realtimemessageapi.BillProcessedByImportSuccessEvent.toObject(opt_includeInstance, this);
5283
+ };
5284
+
5285
+
5286
+ /**
5287
+ * Static version of the {@see toObject} method.
5288
+ * @param {boolean|undefined} includeInstance Whether to include the JSPB
5289
+ * instance for transitional soy proto support:
5290
+ * http://goto/soy-param-migration
5291
+ * @param {!proto.realtimemessageapi.BillProcessedByImportSuccessEvent} msg The msg instance to transform.
5292
+ * @return {!Object}
5293
+ */
5294
+ proto.realtimemessageapi.BillProcessedByImportSuccessEvent.toObject = function(includeInstance, msg) {
5295
+ var f, obj = {
5296
+ attachmentid: msg.getAttachmentid()
5297
+ };
5298
+
5299
+ if (includeInstance) {
5300
+ obj.$jspbMessageInstance = msg;
5301
+ }
5302
+ return obj;
5303
+ };
5304
+ }
5305
+
5306
+
5307
+ /**
5308
+ * Deserializes binary data (in protobuf wire format).
5309
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
5310
+ * @return {!proto.realtimemessageapi.BillProcessedByImportSuccessEvent}
5311
+ */
5312
+ proto.realtimemessageapi.BillProcessedByImportSuccessEvent.deserializeBinary = function(bytes) {
5313
+ var reader = new jspb.BinaryReader(bytes);
5314
+ var msg = new proto.realtimemessageapi.BillProcessedByImportSuccessEvent;
5315
+ return proto.realtimemessageapi.BillProcessedByImportSuccessEvent.deserializeBinaryFromReader(msg, reader);
5316
+ };
5317
+
5318
+
5319
+ /**
5320
+ * Deserializes binary data (in protobuf wire format) from the
5321
+ * given reader into the given message object.
5322
+ * @param {!proto.realtimemessageapi.BillProcessedByImportSuccessEvent} msg The message object to deserialize into.
5323
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
5324
+ * @return {!proto.realtimemessageapi.BillProcessedByImportSuccessEvent}
5325
+ */
5326
+ proto.realtimemessageapi.BillProcessedByImportSuccessEvent.deserializeBinaryFromReader = function(msg, reader) {
5327
+ while (reader.nextField()) {
5328
+ if (reader.isEndGroup()) {
5329
+ break;
5330
+ }
5331
+ var field = reader.getFieldNumber();
5332
+ switch (field) {
5333
+ case 1:
5334
+ var value = /** @type {number} */ (reader.readInt64());
5335
+ msg.setAttachmentid(value);
5336
+ break;
5337
+ default:
5338
+ reader.skipField();
5339
+ break;
5340
+ }
5341
+ }
5342
+ return msg;
5343
+ };
5344
+
5345
+
5346
+ /**
5347
+ * Class method variant: serializes the given message to binary data
5348
+ * (in protobuf wire format), writing to the given BinaryWriter.
5349
+ * @param {!proto.realtimemessageapi.BillProcessedByImportSuccessEvent} message
5350
+ * @param {!jspb.BinaryWriter} writer
5351
+ */
5352
+ proto.realtimemessageapi.BillProcessedByImportSuccessEvent.serializeBinaryToWriter = function(message, writer) {
5353
+ message.serializeBinaryToWriter(writer);
5354
+ };
5355
+
5356
+
5357
+ /**
5358
+ * Serializes the message to binary data (in protobuf wire format).
5359
+ * @return {!Uint8Array}
5360
+ */
5361
+ proto.realtimemessageapi.BillProcessedByImportSuccessEvent.prototype.serializeBinary = function() {
5362
+ var writer = new jspb.BinaryWriter();
5363
+ this.serializeBinaryToWriter(writer);
5364
+ return writer.getResultBuffer();
5365
+ };
5366
+
5367
+
5368
+ /**
5369
+ * Serializes the message to binary data (in protobuf wire format),
5370
+ * writing to the given BinaryWriter.
5371
+ * @param {!jspb.BinaryWriter} writer
5372
+ */
5373
+ proto.realtimemessageapi.BillProcessedByImportSuccessEvent.prototype.serializeBinaryToWriter = function (writer) {
5374
+ var f = undefined;
5375
+ f = this.getAttachmentid();
5376
+ if (f !== 0) {
5377
+ writer.writeInt64(
5378
+ 1,
5379
+ f
5380
+ );
5381
+ }
5382
+ };
5383
+
5384
+
5385
+ /**
5386
+ * Creates a deep clone of this proto. No data is shared with the original.
5387
+ * @return {!proto.realtimemessageapi.BillProcessedByImportSuccessEvent} The clone.
5388
+ */
5389
+ proto.realtimemessageapi.BillProcessedByImportSuccessEvent.prototype.cloneMessage = function() {
5390
+ return /** @type {!proto.realtimemessageapi.BillProcessedByImportSuccessEvent} */ (jspb.Message.cloneMessage(this));
5391
+ };
5392
+
5393
+
5394
+ /**
5395
+ * optional int64 AttachmentId = 1;
5396
+ * @return {number}
5397
+ */
5398
+ proto.realtimemessageapi.BillProcessedByImportSuccessEvent.prototype.getAttachmentid = function() {
5399
+ return /** @type {number} */ (jspb.Message.getFieldProto3(this, 1, 0));
5400
+ };
5401
+
5402
+
5403
+ /** @param {number} value */
5404
+ proto.realtimemessageapi.BillProcessedByImportSuccessEvent.prototype.setAttachmentid = function(value) {
5405
+ jspb.Message.setField(this, 1, value);
5406
+ };
5407
+
5408
+
5089
5409
  /**
5090
5410
  * @enum {number}
5091
5411
  */
@@ -5097,7 +5417,9 @@ proto.realtimemessageapi.EventType = {
5097
5417
  PENDING_UPLOAD_MBILL_DELIVERY_STATUS_UPDATED: 4,
5098
5418
  CARD_VERIFICATION_STATUS_UPDATED: 5,
5099
5419
  IMPORT_ITEM_SUCCESS: 6,
5100
- IMPORT_ITEM_FAILED: 7
5420
+ IMPORT_ITEM_FAILED: 7,
5421
+ BILL_PROCESSED_BY_IMPORT_FAILED: 8,
5422
+ BILL_PROCESSED_BY_IMPORT_SUCCESS: 9
5101
5423
  };
5102
5424
 
5103
5425
  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": "22.15.425",
3
+ "version": "22.15.433",
4
4
  "description": "realtime-message-client-grpcweb",
5
5
  "author": "Sniip Development Team",
6
6
  "license": "MIT",