@sniipwebmaster/transaction-service-client-grpcweb 0.2.3545 → 0.2.3555
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 +173 -2
- package/package.json +1 -1
|
@@ -44,6 +44,7 @@ goog.exportSymbol('proto.sniiptransactionapi.GetUserTransactionsResponse', null,
|
|
|
44
44
|
goog.exportSymbol('proto.sniiptransactionapi.HasPaymentHistoryRequest', null, global);
|
|
45
45
|
goog.exportSymbol('proto.sniiptransactionapi.HasPaymentHistoryResponse', null, global);
|
|
46
46
|
goog.exportSymbol('proto.sniiptransactionapi.InternalBillPaymentHistoryResponse', null, global);
|
|
47
|
+
goog.exportSymbol('proto.sniiptransactionapi.ItemCategory', null, global);
|
|
47
48
|
goog.exportSymbol('proto.sniiptransactionapi.LatestTransactionForBillResponse', null, global);
|
|
48
49
|
goog.exportSymbol('proto.sniiptransactionapi.MaskedCreditCard', null, global);
|
|
49
50
|
goog.exportSymbol('proto.sniiptransactionapi.MbillingSubscription', null, global);
|
|
@@ -10398,7 +10399,10 @@ proto.sniiptransactionapi.ReceiptDetails.toObject = function(includeInstance, ms
|
|
|
10398
10399
|
settlementdate: jspb.Message.getFieldWithDefault(msg, 19, ""),
|
|
10399
10400
|
issettled: jspb.Message.getFieldWithDefault(msg, 20, false),
|
|
10400
10401
|
settlementid: jspb.Message.getFieldWithDefault(msg, 21, 0),
|
|
10401
|
-
settlementstatus: jspb.Message.getFieldWithDefault(msg, 22, "")
|
|
10402
|
+
settlementstatus: jspb.Message.getFieldWithDefault(msg, 22, ""),
|
|
10403
|
+
description: jspb.Message.getFieldWithDefault(msg, 42, ""),
|
|
10404
|
+
sourceid: jspb.Message.getFieldWithDefault(msg, 43, 0),
|
|
10405
|
+
category: jspb.Message.getFieldWithDefault(msg, 44, 0)
|
|
10402
10406
|
};
|
|
10403
10407
|
|
|
10404
10408
|
if (includeInstance) {
|
|
@@ -10524,6 +10528,18 @@ proto.sniiptransactionapi.ReceiptDetails.deserializeBinaryFromReader = function(
|
|
|
10524
10528
|
var value = /** @type {string} */ (reader.readString());
|
|
10525
10529
|
msg.setSettlementstatus(value);
|
|
10526
10530
|
break;
|
|
10531
|
+
case 42:
|
|
10532
|
+
var value = /** @type {string} */ (reader.readString());
|
|
10533
|
+
msg.setDescription(value);
|
|
10534
|
+
break;
|
|
10535
|
+
case 43:
|
|
10536
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
10537
|
+
msg.setSourceid(value);
|
|
10538
|
+
break;
|
|
10539
|
+
case 44:
|
|
10540
|
+
var value = /** @type {!proto.sniiptransactionapi.ItemCategory} */ (reader.readEnum());
|
|
10541
|
+
msg.setCategory(value);
|
|
10542
|
+
break;
|
|
10527
10543
|
default:
|
|
10528
10544
|
reader.skipField();
|
|
10529
10545
|
break;
|
|
@@ -10708,6 +10724,27 @@ proto.sniiptransactionapi.ReceiptDetails.serializeBinaryToWriter = function(mess
|
|
|
10708
10724
|
f
|
|
10709
10725
|
);
|
|
10710
10726
|
}
|
|
10727
|
+
f = message.getDescription();
|
|
10728
|
+
if (f.length > 0) {
|
|
10729
|
+
writer.writeString(
|
|
10730
|
+
42,
|
|
10731
|
+
f
|
|
10732
|
+
);
|
|
10733
|
+
}
|
|
10734
|
+
f = message.getSourceid();
|
|
10735
|
+
if (f !== 0) {
|
|
10736
|
+
writer.writeInt64(
|
|
10737
|
+
43,
|
|
10738
|
+
f
|
|
10739
|
+
);
|
|
10740
|
+
}
|
|
10741
|
+
f = message.getCategory();
|
|
10742
|
+
if (f !== 0.0) {
|
|
10743
|
+
writer.writeEnum(
|
|
10744
|
+
44,
|
|
10745
|
+
f
|
|
10746
|
+
);
|
|
10747
|
+
}
|
|
10711
10748
|
};
|
|
10712
10749
|
|
|
10713
10750
|
|
|
@@ -11062,6 +11099,51 @@ proto.sniiptransactionapi.ReceiptDetails.prototype.setSettlementstatus = functio
|
|
|
11062
11099
|
};
|
|
11063
11100
|
|
|
11064
11101
|
|
|
11102
|
+
/**
|
|
11103
|
+
* optional string description = 42;
|
|
11104
|
+
* @return {string}
|
|
11105
|
+
*/
|
|
11106
|
+
proto.sniiptransactionapi.ReceiptDetails.prototype.getDescription = function() {
|
|
11107
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 42, ""));
|
|
11108
|
+
};
|
|
11109
|
+
|
|
11110
|
+
|
|
11111
|
+
/** @param {string} value */
|
|
11112
|
+
proto.sniiptransactionapi.ReceiptDetails.prototype.setDescription = function(value) {
|
|
11113
|
+
jspb.Message.setProto3StringField(this, 42, value);
|
|
11114
|
+
};
|
|
11115
|
+
|
|
11116
|
+
|
|
11117
|
+
/**
|
|
11118
|
+
* optional int64 sourceId = 43;
|
|
11119
|
+
* @return {number}
|
|
11120
|
+
*/
|
|
11121
|
+
proto.sniiptransactionapi.ReceiptDetails.prototype.getSourceid = function() {
|
|
11122
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 43, 0));
|
|
11123
|
+
};
|
|
11124
|
+
|
|
11125
|
+
|
|
11126
|
+
/** @param {number} value */
|
|
11127
|
+
proto.sniiptransactionapi.ReceiptDetails.prototype.setSourceid = function(value) {
|
|
11128
|
+
jspb.Message.setProto3IntField(this, 43, value);
|
|
11129
|
+
};
|
|
11130
|
+
|
|
11131
|
+
|
|
11132
|
+
/**
|
|
11133
|
+
* optional ItemCategory category = 44;
|
|
11134
|
+
* @return {!proto.sniiptransactionapi.ItemCategory}
|
|
11135
|
+
*/
|
|
11136
|
+
proto.sniiptransactionapi.ReceiptDetails.prototype.getCategory = function() {
|
|
11137
|
+
return /** @type {!proto.sniiptransactionapi.ItemCategory} */ (jspb.Message.getFieldWithDefault(this, 44, 0));
|
|
11138
|
+
};
|
|
11139
|
+
|
|
11140
|
+
|
|
11141
|
+
/** @param {!proto.sniiptransactionapi.ItemCategory} value */
|
|
11142
|
+
proto.sniiptransactionapi.ReceiptDetails.prototype.setCategory = function(value) {
|
|
11143
|
+
jspb.Message.setProto3EnumField(this, 44, value);
|
|
11144
|
+
};
|
|
11145
|
+
|
|
11146
|
+
|
|
11065
11147
|
|
|
11066
11148
|
/**
|
|
11067
11149
|
* Generated by JsPbCodeGenerator.
|
|
@@ -11679,7 +11761,10 @@ proto.sniiptransactionapi.TransactionDetails.toObject = function(includeInstance
|
|
|
11679
11761
|
settlementdate: jspb.Message.getFieldWithDefault(msg, 38, ""),
|
|
11680
11762
|
issettled: jspb.Message.getFieldWithDefault(msg, 39, false),
|
|
11681
11763
|
settlementid: jspb.Message.getFieldWithDefault(msg, 40, 0),
|
|
11682
|
-
settlementstatus: jspb.Message.getFieldWithDefault(msg, 41, "")
|
|
11764
|
+
settlementstatus: jspb.Message.getFieldWithDefault(msg, 41, ""),
|
|
11765
|
+
description: jspb.Message.getFieldWithDefault(msg, 42, ""),
|
|
11766
|
+
sourceid: jspb.Message.getFieldWithDefault(msg, 43, 0),
|
|
11767
|
+
category: jspb.Message.getFieldWithDefault(msg, 44, 0)
|
|
11683
11768
|
};
|
|
11684
11769
|
|
|
11685
11770
|
if (includeInstance) {
|
|
@@ -11877,6 +11962,18 @@ proto.sniiptransactionapi.TransactionDetails.deserializeBinaryFromReader = funct
|
|
|
11877
11962
|
var value = /** @type {string} */ (reader.readString());
|
|
11878
11963
|
msg.setSettlementstatus(value);
|
|
11879
11964
|
break;
|
|
11965
|
+
case 42:
|
|
11966
|
+
var value = /** @type {string} */ (reader.readString());
|
|
11967
|
+
msg.setDescription(value);
|
|
11968
|
+
break;
|
|
11969
|
+
case 43:
|
|
11970
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
11971
|
+
msg.setSourceid(value);
|
|
11972
|
+
break;
|
|
11973
|
+
case 44:
|
|
11974
|
+
var value = /** @type {!proto.sniiptransactionapi.ItemCategory} */ (reader.readEnum());
|
|
11975
|
+
msg.setCategory(value);
|
|
11976
|
+
break;
|
|
11880
11977
|
default:
|
|
11881
11978
|
reader.skipField();
|
|
11882
11979
|
break;
|
|
@@ -12187,6 +12284,27 @@ proto.sniiptransactionapi.TransactionDetails.serializeBinaryToWriter = function(
|
|
|
12187
12284
|
f
|
|
12188
12285
|
);
|
|
12189
12286
|
}
|
|
12287
|
+
f = message.getDescription();
|
|
12288
|
+
if (f.length > 0) {
|
|
12289
|
+
writer.writeString(
|
|
12290
|
+
42,
|
|
12291
|
+
f
|
|
12292
|
+
);
|
|
12293
|
+
}
|
|
12294
|
+
f = message.getSourceid();
|
|
12295
|
+
if (f !== 0) {
|
|
12296
|
+
writer.writeInt64(
|
|
12297
|
+
43,
|
|
12298
|
+
f
|
|
12299
|
+
);
|
|
12300
|
+
}
|
|
12301
|
+
f = message.getCategory();
|
|
12302
|
+
if (f !== 0.0) {
|
|
12303
|
+
writer.writeEnum(
|
|
12304
|
+
44,
|
|
12305
|
+
f
|
|
12306
|
+
);
|
|
12307
|
+
}
|
|
12190
12308
|
};
|
|
12191
12309
|
|
|
12192
12310
|
|
|
@@ -12817,6 +12935,51 @@ proto.sniiptransactionapi.TransactionDetails.prototype.setSettlementstatus = fun
|
|
|
12817
12935
|
};
|
|
12818
12936
|
|
|
12819
12937
|
|
|
12938
|
+
/**
|
|
12939
|
+
* optional string description = 42;
|
|
12940
|
+
* @return {string}
|
|
12941
|
+
*/
|
|
12942
|
+
proto.sniiptransactionapi.TransactionDetails.prototype.getDescription = function() {
|
|
12943
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 42, ""));
|
|
12944
|
+
};
|
|
12945
|
+
|
|
12946
|
+
|
|
12947
|
+
/** @param {string} value */
|
|
12948
|
+
proto.sniiptransactionapi.TransactionDetails.prototype.setDescription = function(value) {
|
|
12949
|
+
jspb.Message.setProto3StringField(this, 42, value);
|
|
12950
|
+
};
|
|
12951
|
+
|
|
12952
|
+
|
|
12953
|
+
/**
|
|
12954
|
+
* optional int64 sourceId = 43;
|
|
12955
|
+
* @return {number}
|
|
12956
|
+
*/
|
|
12957
|
+
proto.sniiptransactionapi.TransactionDetails.prototype.getSourceid = function() {
|
|
12958
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 43, 0));
|
|
12959
|
+
};
|
|
12960
|
+
|
|
12961
|
+
|
|
12962
|
+
/** @param {number} value */
|
|
12963
|
+
proto.sniiptransactionapi.TransactionDetails.prototype.setSourceid = function(value) {
|
|
12964
|
+
jspb.Message.setProto3IntField(this, 43, value);
|
|
12965
|
+
};
|
|
12966
|
+
|
|
12967
|
+
|
|
12968
|
+
/**
|
|
12969
|
+
* optional ItemCategory category = 44;
|
|
12970
|
+
* @return {!proto.sniiptransactionapi.ItemCategory}
|
|
12971
|
+
*/
|
|
12972
|
+
proto.sniiptransactionapi.TransactionDetails.prototype.getCategory = function() {
|
|
12973
|
+
return /** @type {!proto.sniiptransactionapi.ItemCategory} */ (jspb.Message.getFieldWithDefault(this, 44, 0));
|
|
12974
|
+
};
|
|
12975
|
+
|
|
12976
|
+
|
|
12977
|
+
/** @param {!proto.sniiptransactionapi.ItemCategory} value */
|
|
12978
|
+
proto.sniiptransactionapi.TransactionDetails.prototype.setCategory = function(value) {
|
|
12979
|
+
jspb.Message.setProto3EnumField(this, 44, value);
|
|
12980
|
+
};
|
|
12981
|
+
|
|
12982
|
+
|
|
12820
12983
|
|
|
12821
12984
|
/**
|
|
12822
12985
|
* Generated by JsPbCodeGenerator.
|
|
@@ -13536,4 +13699,12 @@ proto.sniiptransactionapi.UserTransactionsGetRequest.prototype.setLimit = functi
|
|
|
13536
13699
|
};
|
|
13537
13700
|
|
|
13538
13701
|
|
|
13702
|
+
/**
|
|
13703
|
+
* @enum {number}
|
|
13704
|
+
*/
|
|
13705
|
+
proto.sniiptransactionapi.ItemCategory = {
|
|
13706
|
+
BILL: 0,
|
|
13707
|
+
DONATION: 1
|
|
13708
|
+
};
|
|
13709
|
+
|
|
13539
13710
|
goog.object.extend(exports, proto.sniiptransactionapi);
|