@sniipwebmaster/realtime-message-client-grpcweb 21.23.250 → 21.24.272

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.
@@ -18,6 +18,7 @@ goog.exportSymbol('proto.realtimemessageapi.BillPaid', null, global);
18
18
  goog.exportSymbol('proto.realtimemessageapi.BulkPaymentSummary', null, global);
19
19
  goog.exportSymbol('proto.realtimemessageapi.BulkPaymentTaskSummary', null, global);
20
20
  goog.exportSymbol('proto.realtimemessageapi.BulkPaymentTaskUpdate', null, global);
21
+ goog.exportSymbol('proto.realtimemessageapi.CardVerificationStatusUpdated', null, global);
21
22
  goog.exportSymbol('proto.realtimemessageapi.EmptyRequest', null, global);
22
23
  goog.exportSymbol('proto.realtimemessageapi.Event', null, global);
23
24
  goog.exportSymbol('proto.realtimemessageapi.EventType', null, global);
@@ -4093,6 +4094,194 @@ proto.realtimemessageapi.BulkPaymentTaskSummary.prototype.setStatus = function(v
4093
4094
  };
4094
4095
 
4095
4096
 
4097
+
4098
+ /**
4099
+ * Generated by JsPbCodeGenerator.
4100
+ * @param {Array=} opt_data Optional initial data array, typically from a
4101
+ * server response, or constructed directly in Javascript. The array is used
4102
+ * in place and becomes part of the constructed object. It is not cloned.
4103
+ * If no data is provided, the constructed object will be empty, but still
4104
+ * valid.
4105
+ * @extends {jspb.Message}
4106
+ * @constructor
4107
+ */
4108
+ proto.realtimemessageapi.CardVerificationStatusUpdated = function(opt_data) {
4109
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
4110
+ };
4111
+ goog.inherits(proto.realtimemessageapi.CardVerificationStatusUpdated, jspb.Message);
4112
+ if (goog.DEBUG && !COMPILED) {
4113
+ proto.realtimemessageapi.CardVerificationStatusUpdated.displayName = 'proto.realtimemessageapi.CardVerificationStatusUpdated';
4114
+ }
4115
+
4116
+
4117
+ if (jspb.Message.GENERATE_TO_OBJECT) {
4118
+ /**
4119
+ * Creates an object representation of this proto suitable for use in Soy templates.
4120
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
4121
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
4122
+ * For the list of reserved names please see:
4123
+ * com.google.apps.jspb.JsClassTemplate.JS_RESERVED_WORDS.
4124
+ * @param {boolean=} opt_includeInstance Whether to include the JSPB instance
4125
+ * for transitional soy proto support: http://goto/soy-param-migration
4126
+ * @return {!Object}
4127
+ */
4128
+ proto.realtimemessageapi.CardVerificationStatusUpdated.prototype.toObject = function(opt_includeInstance) {
4129
+ return proto.realtimemessageapi.CardVerificationStatusUpdated.toObject(opt_includeInstance, this);
4130
+ };
4131
+
4132
+
4133
+ /**
4134
+ * Static version of the {@see toObject} method.
4135
+ * @param {boolean|undefined} includeInstance Whether to include the JSPB
4136
+ * instance for transitional soy proto support:
4137
+ * http://goto/soy-param-migration
4138
+ * @param {!proto.realtimemessageapi.CardVerificationStatusUpdated} msg The msg instance to transform.
4139
+ * @return {!Object}
4140
+ */
4141
+ proto.realtimemessageapi.CardVerificationStatusUpdated.toObject = function(includeInstance, msg) {
4142
+ var f, obj = {
4143
+ transactionid: msg.getTransactionid(),
4144
+ success: msg.getSuccess()
4145
+ };
4146
+
4147
+ if (includeInstance) {
4148
+ obj.$jspbMessageInstance = msg;
4149
+ }
4150
+ return obj;
4151
+ };
4152
+ }
4153
+
4154
+
4155
+ /**
4156
+ * Deserializes binary data (in protobuf wire format).
4157
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
4158
+ * @return {!proto.realtimemessageapi.CardVerificationStatusUpdated}
4159
+ */
4160
+ proto.realtimemessageapi.CardVerificationStatusUpdated.deserializeBinary = function(bytes) {
4161
+ var reader = new jspb.BinaryReader(bytes);
4162
+ var msg = new proto.realtimemessageapi.CardVerificationStatusUpdated;
4163
+ return proto.realtimemessageapi.CardVerificationStatusUpdated.deserializeBinaryFromReader(msg, reader);
4164
+ };
4165
+
4166
+
4167
+ /**
4168
+ * Deserializes binary data (in protobuf wire format) from the
4169
+ * given reader into the given message object.
4170
+ * @param {!proto.realtimemessageapi.CardVerificationStatusUpdated} msg The message object to deserialize into.
4171
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
4172
+ * @return {!proto.realtimemessageapi.CardVerificationStatusUpdated}
4173
+ */
4174
+ proto.realtimemessageapi.CardVerificationStatusUpdated.deserializeBinaryFromReader = function(msg, reader) {
4175
+ while (reader.nextField()) {
4176
+ if (reader.isEndGroup()) {
4177
+ break;
4178
+ }
4179
+ var field = reader.getFieldNumber();
4180
+ switch (field) {
4181
+ case 1:
4182
+ var value = /** @type {number} */ (reader.readInt64());
4183
+ msg.setTransactionid(value);
4184
+ break;
4185
+ case 2:
4186
+ var value = /** @type {boolean} */ (reader.readBool());
4187
+ msg.setSuccess(value);
4188
+ break;
4189
+ default:
4190
+ reader.skipField();
4191
+ break;
4192
+ }
4193
+ }
4194
+ return msg;
4195
+ };
4196
+
4197
+
4198
+ /**
4199
+ * Class method variant: serializes the given message to binary data
4200
+ * (in protobuf wire format), writing to the given BinaryWriter.
4201
+ * @param {!proto.realtimemessageapi.CardVerificationStatusUpdated} message
4202
+ * @param {!jspb.BinaryWriter} writer
4203
+ */
4204
+ proto.realtimemessageapi.CardVerificationStatusUpdated.serializeBinaryToWriter = function(message, writer) {
4205
+ message.serializeBinaryToWriter(writer);
4206
+ };
4207
+
4208
+
4209
+ /**
4210
+ * Serializes the message to binary data (in protobuf wire format).
4211
+ * @return {!Uint8Array}
4212
+ */
4213
+ proto.realtimemessageapi.CardVerificationStatusUpdated.prototype.serializeBinary = function() {
4214
+ var writer = new jspb.BinaryWriter();
4215
+ this.serializeBinaryToWriter(writer);
4216
+ return writer.getResultBuffer();
4217
+ };
4218
+
4219
+
4220
+ /**
4221
+ * Serializes the message to binary data (in protobuf wire format),
4222
+ * writing to the given BinaryWriter.
4223
+ * @param {!jspb.BinaryWriter} writer
4224
+ */
4225
+ proto.realtimemessageapi.CardVerificationStatusUpdated.prototype.serializeBinaryToWriter = function (writer) {
4226
+ var f = undefined;
4227
+ f = this.getTransactionid();
4228
+ if (f !== 0) {
4229
+ writer.writeInt64(
4230
+ 1,
4231
+ f
4232
+ );
4233
+ }
4234
+ f = this.getSuccess();
4235
+ if (f) {
4236
+ writer.writeBool(
4237
+ 2,
4238
+ f
4239
+ );
4240
+ }
4241
+ };
4242
+
4243
+
4244
+ /**
4245
+ * Creates a deep clone of this proto. No data is shared with the original.
4246
+ * @return {!proto.realtimemessageapi.CardVerificationStatusUpdated} The clone.
4247
+ */
4248
+ proto.realtimemessageapi.CardVerificationStatusUpdated.prototype.cloneMessage = function() {
4249
+ return /** @type {!proto.realtimemessageapi.CardVerificationStatusUpdated} */ (jspb.Message.cloneMessage(this));
4250
+ };
4251
+
4252
+
4253
+ /**
4254
+ * optional int64 transactionId = 1;
4255
+ * @return {number}
4256
+ */
4257
+ proto.realtimemessageapi.CardVerificationStatusUpdated.prototype.getTransactionid = function() {
4258
+ return /** @type {number} */ (jspb.Message.getFieldProto3(this, 1, 0));
4259
+ };
4260
+
4261
+
4262
+ /** @param {number} value */
4263
+ proto.realtimemessageapi.CardVerificationStatusUpdated.prototype.setTransactionid = function(value) {
4264
+ jspb.Message.setField(this, 1, value);
4265
+ };
4266
+
4267
+
4268
+ /**
4269
+ * optional bool success = 2;
4270
+ * Note that Boolean fields may be set to 0/1 when serialized from a Java server.
4271
+ * You should avoid comparisons like {@code val === true/false} in those cases.
4272
+ * @return {boolean}
4273
+ */
4274
+ proto.realtimemessageapi.CardVerificationStatusUpdated.prototype.getSuccess = function() {
4275
+ return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 2, false));
4276
+ };
4277
+
4278
+
4279
+ /** @param {boolean} value */
4280
+ proto.realtimemessageapi.CardVerificationStatusUpdated.prototype.setSuccess = function(value) {
4281
+ jspb.Message.setField(this, 2, value);
4282
+ };
4283
+
4284
+
4096
4285
  /**
4097
4286
  * @enum {number}
4098
4287
  */
@@ -4101,7 +4290,8 @@ proto.realtimemessageapi.EventType = {
4101
4290
  TRANSACTION_FAILED: 1,
4102
4291
  BULK_PAYMENT_UPDATED: 2,
4103
4292
  ALL_BILLS_PROCESSED_BY_IMPORT: 3,
4104
- PENDING_UPLOAD_MBILL_DELIVERY_STATUS_UPDATED: 4
4293
+ PENDING_UPLOAD_MBILL_DELIVERY_STATUS_UPDATED: 4,
4294
+ CARD_VERIFICATION_STATUS_UPDATED: 5
4105
4295
  };
4106
4296
 
4107
4297
  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.250",
3
+ "version": "21.24.272",
4
4
  "description": "realtime-message-client-grpcweb",
5
5
  "author": "Sniip Development Team",
6
6
  "license": "MIT",