@stashfin/grpc 1.2.536 → 1.2.537
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/package.json
CHANGED
|
@@ -25,7 +25,7 @@ export interface checkTransactionStatusResponse {
|
|
|
25
25
|
payee_ifsc?: string | undefined;
|
|
26
26
|
lite_lrn?: string | undefined;
|
|
27
27
|
txn_type?: string | undefined;
|
|
28
|
-
|
|
28
|
+
payment_frequency?: string | undefined;
|
|
29
29
|
umn?: string | undefined;
|
|
30
30
|
start_date?: string | undefined;
|
|
31
31
|
end_date?: string | undefined;
|
|
@@ -139,7 +139,7 @@ function createBasecheckTransactionStatusResponse() {
|
|
|
139
139
|
payee_ifsc: undefined,
|
|
140
140
|
lite_lrn: undefined,
|
|
141
141
|
txn_type: undefined,
|
|
142
|
-
|
|
142
|
+
payment_frequency: undefined,
|
|
143
143
|
umn: undefined,
|
|
144
144
|
start_date: undefined,
|
|
145
145
|
end_date: undefined,
|
|
@@ -198,8 +198,8 @@ exports.checkTransactionStatusResponse = {
|
|
|
198
198
|
if (message.txn_type !== undefined) {
|
|
199
199
|
writer.uint32(138).string(message.txn_type);
|
|
200
200
|
}
|
|
201
|
-
if (message.
|
|
202
|
-
writer.uint32(146).string(message.
|
|
201
|
+
if (message.payment_frequency !== undefined) {
|
|
202
|
+
writer.uint32(146).string(message.payment_frequency);
|
|
203
203
|
}
|
|
204
204
|
if (message.umn !== undefined) {
|
|
205
205
|
writer.uint32(154).string(message.umn);
|
|
@@ -325,7 +325,7 @@ exports.checkTransactionStatusResponse = {
|
|
|
325
325
|
if (tag !== 146) {
|
|
326
326
|
break;
|
|
327
327
|
}
|
|
328
|
-
message.
|
|
328
|
+
message.payment_frequency = reader.string();
|
|
329
329
|
continue;
|
|
330
330
|
case 19:
|
|
331
331
|
if (tag !== 154) {
|
|
@@ -380,7 +380,7 @@ exports.checkTransactionStatusResponse = {
|
|
|
380
380
|
payee_ifsc: isSet(object.payee_ifsc) ? globalThis.String(object.payee_ifsc) : undefined,
|
|
381
381
|
lite_lrn: isSet(object.lite_lrn) ? globalThis.String(object.lite_lrn) : undefined,
|
|
382
382
|
txn_type: isSet(object.txn_type) ? globalThis.String(object.txn_type) : undefined,
|
|
383
|
-
|
|
383
|
+
payment_frequency: isSet(object.payment_frequency) ? globalThis.String(object.payment_frequency) : undefined,
|
|
384
384
|
umn: isSet(object.umn) ? globalThis.String(object.umn) : undefined,
|
|
385
385
|
start_date: isSet(object.start_date) ? globalThis.String(object.start_date) : undefined,
|
|
386
386
|
end_date: isSet(object.end_date) ? globalThis.String(object.end_date) : undefined,
|
|
@@ -439,8 +439,8 @@ exports.checkTransactionStatusResponse = {
|
|
|
439
439
|
if (message.txn_type !== undefined) {
|
|
440
440
|
obj.txn_type = message.txn_type;
|
|
441
441
|
}
|
|
442
|
-
if (message.
|
|
443
|
-
obj.
|
|
442
|
+
if (message.payment_frequency !== undefined) {
|
|
443
|
+
obj.payment_frequency = message.payment_frequency;
|
|
444
444
|
}
|
|
445
445
|
if (message.umn !== undefined) {
|
|
446
446
|
obj.umn = message.umn;
|
|
@@ -475,7 +475,7 @@ exports.checkTransactionStatusResponse = {
|
|
|
475
475
|
message.payee_ifsc = object.payee_ifsc ?? undefined;
|
|
476
476
|
message.lite_lrn = object.lite_lrn ?? undefined;
|
|
477
477
|
message.txn_type = object.txn_type ?? undefined;
|
|
478
|
-
message.
|
|
478
|
+
message.payment_frequency = object.payment_frequency ?? undefined;
|
|
479
479
|
message.umn = object.umn ?? undefined;
|
|
480
480
|
message.start_date = object.start_date ?? undefined;
|
|
481
481
|
message.end_date = object.end_date ?? undefined;
|