@sniipwebmaster/checkout-service-client-grpcweb 26.6.445 → 26.6.451
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.
- package/dependancies/service_pb.js +0 -41
- package/package.json +1 -1
|
@@ -41,7 +41,6 @@ goog.exportSymbol('proto.checkoutserviceapi.PaymentStatusResponse', null, global
|
|
|
41
41
|
goog.exportSymbol('proto.checkoutserviceapi.ProcessSettlementFileRequest', null, global);
|
|
42
42
|
goog.exportSymbol('proto.checkoutserviceapi.PubSubMessage', null, global);
|
|
43
43
|
goog.exportSymbol('proto.checkoutserviceapi.PubSubPushRequest', null, global);
|
|
44
|
-
goog.exportSymbol('proto.checkoutserviceapi.RefundReason', null, global);
|
|
45
44
|
goog.exportSymbol('proto.checkoutserviceapi.RefundRequest', null, global);
|
|
46
45
|
goog.exportSymbol('proto.checkoutserviceapi.RefundResponse', null, global);
|
|
47
46
|
goog.exportSymbol('proto.checkoutserviceapi.ResponseCode', null, global);
|
|
@@ -4036,7 +4035,6 @@ proto.checkoutserviceapi.RefundRequest.toObject = function(includeInstance, msg)
|
|
|
4036
4035
|
originalsniiptransactionid: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
4037
4036
|
refundtransactionid: jspb.Message.getFieldWithDefault(msg, 2, 0),
|
|
4038
4037
|
refundamount: (f = msg.getRefundamount()) && google_type_decimal_pb.Decimal.toObject(includeInstance, f),
|
|
4039
|
-
reason: jspb.Message.getFieldWithDefault(msg, 4, 0),
|
|
4040
4038
|
reference: jspb.Message.getFieldWithDefault(msg, 5, "")
|
|
4041
4039
|
};
|
|
4042
4040
|
|
|
@@ -4087,10 +4085,6 @@ proto.checkoutserviceapi.RefundRequest.deserializeBinaryFromReader = function(ms
|
|
|
4087
4085
|
reader.readMessage(value,google_type_decimal_pb.Decimal.deserializeBinaryFromReader);
|
|
4088
4086
|
msg.setRefundamount(value);
|
|
4089
4087
|
break;
|
|
4090
|
-
case 4:
|
|
4091
|
-
var value = /** @type {!proto.checkoutserviceapi.RefundReason} */ (reader.readEnum());
|
|
4092
|
-
msg.setReason(value);
|
|
4093
|
-
break;
|
|
4094
4088
|
case 5:
|
|
4095
4089
|
var value = /** @type {string} */ (reader.readString());
|
|
4096
4090
|
msg.setReference(value);
|
|
@@ -4146,13 +4140,6 @@ proto.checkoutserviceapi.RefundRequest.serializeBinaryToWriter = function(messag
|
|
|
4146
4140
|
google_type_decimal_pb.Decimal.serializeBinaryToWriter
|
|
4147
4141
|
);
|
|
4148
4142
|
}
|
|
4149
|
-
f = message.getReason();
|
|
4150
|
-
if (f !== 0.0) {
|
|
4151
|
-
writer.writeEnum(
|
|
4152
|
-
4,
|
|
4153
|
-
f
|
|
4154
|
-
);
|
|
4155
|
-
}
|
|
4156
4143
|
f = message.getReference();
|
|
4157
4144
|
if (f.length > 0) {
|
|
4158
4145
|
writer.writeString(
|
|
@@ -4236,24 +4223,6 @@ proto.checkoutserviceapi.RefundRequest.prototype.hasRefundamount = function() {
|
|
|
4236
4223
|
};
|
|
4237
4224
|
|
|
4238
4225
|
|
|
4239
|
-
/**
|
|
4240
|
-
* optional RefundReason reason = 4;
|
|
4241
|
-
* @return {!proto.checkoutserviceapi.RefundReason}
|
|
4242
|
-
*/
|
|
4243
|
-
proto.checkoutserviceapi.RefundRequest.prototype.getReason = function() {
|
|
4244
|
-
return /** @type {!proto.checkoutserviceapi.RefundReason} */ (jspb.Message.getFieldWithDefault(this, 4, 0));
|
|
4245
|
-
};
|
|
4246
|
-
|
|
4247
|
-
|
|
4248
|
-
/**
|
|
4249
|
-
* @param {!proto.checkoutserviceapi.RefundReason} value
|
|
4250
|
-
* @return {!proto.checkoutserviceapi.RefundRequest} returns this
|
|
4251
|
-
*/
|
|
4252
|
-
proto.checkoutserviceapi.RefundRequest.prototype.setReason = function(value) {
|
|
4253
|
-
return jspb.Message.setProto3EnumField(this, 4, value);
|
|
4254
|
-
};
|
|
4255
|
-
|
|
4256
|
-
|
|
4257
4226
|
/**
|
|
4258
4227
|
* optional string reference = 5;
|
|
4259
4228
|
* @return {string}
|
|
@@ -13197,14 +13166,4 @@ proto.checkoutserviceapi.CheckoutPaymentType = {
|
|
|
13197
13166
|
CHECKOUT_PAYMENT_TYPE_GOOGLE_PAY: 3
|
|
13198
13167
|
};
|
|
13199
13168
|
|
|
13200
|
-
/**
|
|
13201
|
-
* @enum {number}
|
|
13202
|
-
*/
|
|
13203
|
-
proto.checkoutserviceapi.RefundReason = {
|
|
13204
|
-
REFUND_REASON_UNSPECIFIED: 0,
|
|
13205
|
-
REFUND_REASON_REQUESTED_BY_CUSTOMER: 1,
|
|
13206
|
-
REFUND_REASON_DUPLICATE: 2,
|
|
13207
|
-
REFUND_REASON_FRAUDULENT: 3
|
|
13208
|
-
};
|
|
13209
|
-
|
|
13210
13169
|
goog.object.extend(exports, proto.checkoutserviceapi);
|