@stashfin/grpc 1.2.862 → 1.2.865
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
|
@@ -13,6 +13,7 @@ export interface getAllBbpsTnxRequest {
|
|
|
13
13
|
status?: string | undefined;
|
|
14
14
|
customer_id?: string | undefined;
|
|
15
15
|
account_no?: string | undefined;
|
|
16
|
+
biller_status?: string | undefined;
|
|
16
17
|
}
|
|
17
18
|
export interface BBPSTransactions {
|
|
18
19
|
transaction_id?: number | undefined;
|
|
@@ -28,6 +29,7 @@ export interface BBPSTransactions {
|
|
|
28
29
|
account_no?: string | undefined;
|
|
29
30
|
biller_id?: string | undefined;
|
|
30
31
|
pg_txn_ref_id?: string | undefined;
|
|
32
|
+
biller_status?: string | undefined;
|
|
31
33
|
}
|
|
32
34
|
export interface getAllBbpsTnxResponse {
|
|
33
35
|
transactions: BBPSTransactions[];
|
|
@@ -25,6 +25,7 @@ function createBasegetAllBbpsTnxRequest() {
|
|
|
25
25
|
status: undefined,
|
|
26
26
|
customer_id: undefined,
|
|
27
27
|
account_no: undefined,
|
|
28
|
+
biller_status: undefined,
|
|
28
29
|
};
|
|
29
30
|
}
|
|
30
31
|
exports.getAllBbpsTnxRequest = {
|
|
@@ -62,6 +63,9 @@ exports.getAllBbpsTnxRequest = {
|
|
|
62
63
|
if (message.account_no !== undefined) {
|
|
63
64
|
writer.uint32(90).string(message.account_no);
|
|
64
65
|
}
|
|
66
|
+
if (message.biller_status !== undefined) {
|
|
67
|
+
writer.uint32(98).string(message.biller_status);
|
|
68
|
+
}
|
|
65
69
|
return writer;
|
|
66
70
|
},
|
|
67
71
|
decode(input, length) {
|
|
@@ -137,6 +141,12 @@ exports.getAllBbpsTnxRequest = {
|
|
|
137
141
|
}
|
|
138
142
|
message.account_no = reader.string();
|
|
139
143
|
continue;
|
|
144
|
+
case 12:
|
|
145
|
+
if (tag !== 98) {
|
|
146
|
+
break;
|
|
147
|
+
}
|
|
148
|
+
message.biller_status = reader.string();
|
|
149
|
+
continue;
|
|
140
150
|
}
|
|
141
151
|
if ((tag & 7) === 4 || tag === 0) {
|
|
142
152
|
break;
|
|
@@ -158,6 +168,7 @@ exports.getAllBbpsTnxRequest = {
|
|
|
158
168
|
status: isSet(object.status) ? globalThis.String(object.status) : undefined,
|
|
159
169
|
customer_id: isSet(object.customer_id) ? globalThis.String(object.customer_id) : undefined,
|
|
160
170
|
account_no: isSet(object.account_no) ? globalThis.String(object.account_no) : undefined,
|
|
171
|
+
biller_status: isSet(object.biller_status) ? globalThis.String(object.biller_status) : undefined,
|
|
161
172
|
};
|
|
162
173
|
},
|
|
163
174
|
toJSON(message) {
|
|
@@ -195,6 +206,9 @@ exports.getAllBbpsTnxRequest = {
|
|
|
195
206
|
if (message.account_no !== undefined) {
|
|
196
207
|
obj.account_no = message.account_no;
|
|
197
208
|
}
|
|
209
|
+
if (message.biller_status !== undefined) {
|
|
210
|
+
obj.biller_status = message.biller_status;
|
|
211
|
+
}
|
|
198
212
|
return obj;
|
|
199
213
|
},
|
|
200
214
|
create(base) {
|
|
@@ -213,6 +227,7 @@ exports.getAllBbpsTnxRequest = {
|
|
|
213
227
|
message.status = object.status ?? undefined;
|
|
214
228
|
message.customer_id = object.customer_id ?? undefined;
|
|
215
229
|
message.account_no = object.account_no ?? undefined;
|
|
230
|
+
message.biller_status = object.biller_status ?? undefined;
|
|
216
231
|
return message;
|
|
217
232
|
},
|
|
218
233
|
};
|
|
@@ -231,6 +246,7 @@ function createBaseBBPSTransactions() {
|
|
|
231
246
|
account_no: undefined,
|
|
232
247
|
biller_id: undefined,
|
|
233
248
|
pg_txn_ref_id: undefined,
|
|
249
|
+
biller_status: undefined,
|
|
234
250
|
};
|
|
235
251
|
}
|
|
236
252
|
exports.BBPSTransactions = {
|
|
@@ -274,6 +290,9 @@ exports.BBPSTransactions = {
|
|
|
274
290
|
if (message.pg_txn_ref_id !== undefined) {
|
|
275
291
|
writer.uint32(106).string(message.pg_txn_ref_id);
|
|
276
292
|
}
|
|
293
|
+
if (message.biller_status !== undefined) {
|
|
294
|
+
writer.uint32(114).string(message.biller_status);
|
|
295
|
+
}
|
|
277
296
|
return writer;
|
|
278
297
|
},
|
|
279
298
|
decode(input, length) {
|
|
@@ -361,6 +380,12 @@ exports.BBPSTransactions = {
|
|
|
361
380
|
}
|
|
362
381
|
message.pg_txn_ref_id = reader.string();
|
|
363
382
|
continue;
|
|
383
|
+
case 14:
|
|
384
|
+
if (tag !== 114) {
|
|
385
|
+
break;
|
|
386
|
+
}
|
|
387
|
+
message.biller_status = reader.string();
|
|
388
|
+
continue;
|
|
364
389
|
}
|
|
365
390
|
if ((tag & 7) === 4 || tag === 0) {
|
|
366
391
|
break;
|
|
@@ -384,6 +409,7 @@ exports.BBPSTransactions = {
|
|
|
384
409
|
account_no: isSet(object.account_no) ? globalThis.String(object.account_no) : undefined,
|
|
385
410
|
biller_id: isSet(object.biller_id) ? globalThis.String(object.biller_id) : undefined,
|
|
386
411
|
pg_txn_ref_id: isSet(object.pg_txn_ref_id) ? globalThis.String(object.pg_txn_ref_id) : undefined,
|
|
412
|
+
biller_status: isSet(object.biller_status) ? globalThis.String(object.biller_status) : undefined,
|
|
387
413
|
};
|
|
388
414
|
},
|
|
389
415
|
toJSON(message) {
|
|
@@ -427,6 +453,9 @@ exports.BBPSTransactions = {
|
|
|
427
453
|
if (message.pg_txn_ref_id !== undefined) {
|
|
428
454
|
obj.pg_txn_ref_id = message.pg_txn_ref_id;
|
|
429
455
|
}
|
|
456
|
+
if (message.biller_status !== undefined) {
|
|
457
|
+
obj.biller_status = message.biller_status;
|
|
458
|
+
}
|
|
430
459
|
return obj;
|
|
431
460
|
},
|
|
432
461
|
create(base) {
|
|
@@ -447,6 +476,7 @@ exports.BBPSTransactions = {
|
|
|
447
476
|
message.account_no = object.account_no ?? undefined;
|
|
448
477
|
message.biller_id = object.biller_id ?? undefined;
|
|
449
478
|
message.pg_txn_ref_id = object.pg_txn_ref_id ?? undefined;
|
|
479
|
+
message.biller_status = object.biller_status ?? undefined;
|
|
450
480
|
return message;
|
|
451
481
|
},
|
|
452
482
|
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import _m0 from "protobufjs/minimal";
|
|
2
|
+
export declare const protobufPackage = "bureau.deleteBureauDataByCustId";
|
|
3
|
+
export interface DeleteBureauDataByCustIdRequest {
|
|
4
|
+
customer_id: number;
|
|
5
|
+
}
|
|
6
|
+
export interface DeleteBureauDataByCustIdResponse {
|
|
7
|
+
status: string;
|
|
8
|
+
message: string;
|
|
9
|
+
status_code: string;
|
|
10
|
+
}
|
|
11
|
+
export declare const DeleteBureauDataByCustIdRequest: {
|
|
12
|
+
encode(message: DeleteBureauDataByCustIdRequest, writer?: _m0.Writer): _m0.Writer;
|
|
13
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): DeleteBureauDataByCustIdRequest;
|
|
14
|
+
fromJSON(object: any): DeleteBureauDataByCustIdRequest;
|
|
15
|
+
toJSON(message: DeleteBureauDataByCustIdRequest): unknown;
|
|
16
|
+
create<I extends Exact<DeepPartial<DeleteBureauDataByCustIdRequest>, I>>(base?: I): DeleteBureauDataByCustIdRequest;
|
|
17
|
+
fromPartial<I extends Exact<DeepPartial<DeleteBureauDataByCustIdRequest>, I>>(object: I): DeleteBureauDataByCustIdRequest;
|
|
18
|
+
};
|
|
19
|
+
export declare const DeleteBureauDataByCustIdResponse: {
|
|
20
|
+
encode(message: DeleteBureauDataByCustIdResponse, writer?: _m0.Writer): _m0.Writer;
|
|
21
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): DeleteBureauDataByCustIdResponse;
|
|
22
|
+
fromJSON(object: any): DeleteBureauDataByCustIdResponse;
|
|
23
|
+
toJSON(message: DeleteBureauDataByCustIdResponse): unknown;
|
|
24
|
+
create<I extends Exact<DeepPartial<DeleteBureauDataByCustIdResponse>, I>>(base?: I): DeleteBureauDataByCustIdResponse;
|
|
25
|
+
fromPartial<I extends Exact<DeepPartial<DeleteBureauDataByCustIdResponse>, I>>(object: I): DeleteBureauDataByCustIdResponse;
|
|
26
|
+
};
|
|
27
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
28
|
+
export type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
29
|
+
[K in keyof T]?: DeepPartial<T[K]>;
|
|
30
|
+
} : Partial<T>;
|
|
31
|
+
type KeysOfUnion<T> = T extends T ? keyof T : never;
|
|
32
|
+
export type Exact<P, I extends P> = P extends Builtin ? P : P & {
|
|
33
|
+
[K in keyof P]: Exact<P[K], I[K]>;
|
|
34
|
+
} & {
|
|
35
|
+
[K in Exclude<keyof I, KeysOfUnion<P>>]: never;
|
|
36
|
+
};
|
|
37
|
+
export {};
|
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
3
|
+
// versions:
|
|
4
|
+
// protoc-gen-ts_proto v1.181.0
|
|
5
|
+
// protoc v6.31.1
|
|
6
|
+
// source: bureau/deletebureaudatabycustid.proto
|
|
7
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
8
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
9
|
+
};
|
|
10
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11
|
+
exports.DeleteBureauDataByCustIdResponse = exports.DeleteBureauDataByCustIdRequest = exports.protobufPackage = void 0;
|
|
12
|
+
/* eslint-disable */
|
|
13
|
+
const long_1 = __importDefault(require("long"));
|
|
14
|
+
const minimal_1 = __importDefault(require("protobufjs/minimal"));
|
|
15
|
+
exports.protobufPackage = "bureau.deleteBureauDataByCustId";
|
|
16
|
+
function createBaseDeleteBureauDataByCustIdRequest() {
|
|
17
|
+
return { customer_id: 0 };
|
|
18
|
+
}
|
|
19
|
+
exports.DeleteBureauDataByCustIdRequest = {
|
|
20
|
+
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
21
|
+
if (message.customer_id !== 0) {
|
|
22
|
+
writer.uint32(8).int64(message.customer_id);
|
|
23
|
+
}
|
|
24
|
+
return writer;
|
|
25
|
+
},
|
|
26
|
+
decode(input, length) {
|
|
27
|
+
const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
|
|
28
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
29
|
+
const message = createBaseDeleteBureauDataByCustIdRequest();
|
|
30
|
+
while (reader.pos < end) {
|
|
31
|
+
const tag = reader.uint32();
|
|
32
|
+
switch (tag >>> 3) {
|
|
33
|
+
case 1:
|
|
34
|
+
if (tag !== 8) {
|
|
35
|
+
break;
|
|
36
|
+
}
|
|
37
|
+
message.customer_id = longToNumber(reader.int64());
|
|
38
|
+
continue;
|
|
39
|
+
}
|
|
40
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
41
|
+
break;
|
|
42
|
+
}
|
|
43
|
+
reader.skipType(tag & 7);
|
|
44
|
+
}
|
|
45
|
+
return message;
|
|
46
|
+
},
|
|
47
|
+
fromJSON(object) {
|
|
48
|
+
return { customer_id: isSet(object.customer_id) ? globalThis.Number(object.customer_id) : 0 };
|
|
49
|
+
},
|
|
50
|
+
toJSON(message) {
|
|
51
|
+
const obj = {};
|
|
52
|
+
if (message.customer_id !== 0) {
|
|
53
|
+
obj.customer_id = Math.round(message.customer_id);
|
|
54
|
+
}
|
|
55
|
+
return obj;
|
|
56
|
+
},
|
|
57
|
+
create(base) {
|
|
58
|
+
return exports.DeleteBureauDataByCustIdRequest.fromPartial(base ?? {});
|
|
59
|
+
},
|
|
60
|
+
fromPartial(object) {
|
|
61
|
+
const message = createBaseDeleteBureauDataByCustIdRequest();
|
|
62
|
+
message.customer_id = object.customer_id ?? 0;
|
|
63
|
+
return message;
|
|
64
|
+
},
|
|
65
|
+
};
|
|
66
|
+
function createBaseDeleteBureauDataByCustIdResponse() {
|
|
67
|
+
return { status: "", message: "", status_code: "" };
|
|
68
|
+
}
|
|
69
|
+
exports.DeleteBureauDataByCustIdResponse = {
|
|
70
|
+
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
71
|
+
if (message.status !== "") {
|
|
72
|
+
writer.uint32(10).string(message.status);
|
|
73
|
+
}
|
|
74
|
+
if (message.message !== "") {
|
|
75
|
+
writer.uint32(18).string(message.message);
|
|
76
|
+
}
|
|
77
|
+
if (message.status_code !== "") {
|
|
78
|
+
writer.uint32(26).string(message.status_code);
|
|
79
|
+
}
|
|
80
|
+
return writer;
|
|
81
|
+
},
|
|
82
|
+
decode(input, length) {
|
|
83
|
+
const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
|
|
84
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
85
|
+
const message = createBaseDeleteBureauDataByCustIdResponse();
|
|
86
|
+
while (reader.pos < end) {
|
|
87
|
+
const tag = reader.uint32();
|
|
88
|
+
switch (tag >>> 3) {
|
|
89
|
+
case 1:
|
|
90
|
+
if (tag !== 10) {
|
|
91
|
+
break;
|
|
92
|
+
}
|
|
93
|
+
message.status = reader.string();
|
|
94
|
+
continue;
|
|
95
|
+
case 2:
|
|
96
|
+
if (tag !== 18) {
|
|
97
|
+
break;
|
|
98
|
+
}
|
|
99
|
+
message.message = reader.string();
|
|
100
|
+
continue;
|
|
101
|
+
case 3:
|
|
102
|
+
if (tag !== 26) {
|
|
103
|
+
break;
|
|
104
|
+
}
|
|
105
|
+
message.status_code = reader.string();
|
|
106
|
+
continue;
|
|
107
|
+
}
|
|
108
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
109
|
+
break;
|
|
110
|
+
}
|
|
111
|
+
reader.skipType(tag & 7);
|
|
112
|
+
}
|
|
113
|
+
return message;
|
|
114
|
+
},
|
|
115
|
+
fromJSON(object) {
|
|
116
|
+
return {
|
|
117
|
+
status: isSet(object.status) ? globalThis.String(object.status) : "",
|
|
118
|
+
message: isSet(object.message) ? globalThis.String(object.message) : "",
|
|
119
|
+
status_code: isSet(object.status_code) ? globalThis.String(object.status_code) : "",
|
|
120
|
+
};
|
|
121
|
+
},
|
|
122
|
+
toJSON(message) {
|
|
123
|
+
const obj = {};
|
|
124
|
+
if (message.status !== "") {
|
|
125
|
+
obj.status = message.status;
|
|
126
|
+
}
|
|
127
|
+
if (message.message !== "") {
|
|
128
|
+
obj.message = message.message;
|
|
129
|
+
}
|
|
130
|
+
if (message.status_code !== "") {
|
|
131
|
+
obj.status_code = message.status_code;
|
|
132
|
+
}
|
|
133
|
+
return obj;
|
|
134
|
+
},
|
|
135
|
+
create(base) {
|
|
136
|
+
return exports.DeleteBureauDataByCustIdResponse.fromPartial(base ?? {});
|
|
137
|
+
},
|
|
138
|
+
fromPartial(object) {
|
|
139
|
+
const message = createBaseDeleteBureauDataByCustIdResponse();
|
|
140
|
+
message.status = object.status ?? "";
|
|
141
|
+
message.message = object.message ?? "";
|
|
142
|
+
message.status_code = object.status_code ?? "";
|
|
143
|
+
return message;
|
|
144
|
+
},
|
|
145
|
+
};
|
|
146
|
+
function longToNumber(long) {
|
|
147
|
+
if (long.gt(globalThis.Number.MAX_SAFE_INTEGER)) {
|
|
148
|
+
throw new globalThis.Error("Value is larger than Number.MAX_SAFE_INTEGER");
|
|
149
|
+
}
|
|
150
|
+
if (long.lt(globalThis.Number.MIN_SAFE_INTEGER)) {
|
|
151
|
+
throw new globalThis.Error("Value is smaller than Number.MIN_SAFE_INTEGER");
|
|
152
|
+
}
|
|
153
|
+
return long.toNumber();
|
|
154
|
+
}
|
|
155
|
+
if (minimal_1.default.util.Long !== long_1.default) {
|
|
156
|
+
minimal_1.default.util.Long = long_1.default;
|
|
157
|
+
minimal_1.default.configure();
|
|
158
|
+
}
|
|
159
|
+
function isSet(value) {
|
|
160
|
+
return value !== null && value !== undefined;
|
|
161
|
+
}
|
package/ts/bureau.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { type CallOptions, ChannelCredentials, Client, type ClientOptions, type ClientUnaryCall, type handleUnaryCall, Metadata, type ServiceError, type UntypedServiceImplementation } from "@grpc/grpc-js";
|
|
2
|
+
import { DeleteBureauDataByCustIdRequest, DeleteBureauDataByCustIdResponse } from "./bureau/deletebureaudatabycustid";
|
|
2
3
|
import { detailsRequest, detailsResponse } from "./bureau/getbasicdetails";
|
|
3
4
|
import { getAllBureauReportRequest, getAllBureauReportResponse } from "./bureau/getbureaudetails";
|
|
4
5
|
import { getBureauScoreRequest, getBureauScoreResponse } from "./bureau/getbureauscore";
|
|
@@ -92,6 +93,15 @@ export declare const bureauService: {
|
|
|
92
93
|
readonly responseSerialize: (value: getAllBureauReportResponse) => Buffer;
|
|
93
94
|
readonly responseDeserialize: (value: Buffer) => getAllBureauReportResponse;
|
|
94
95
|
};
|
|
96
|
+
readonly deleteBureauDataByCustId: {
|
|
97
|
+
readonly path: "/service.bureau/deleteBureauDataByCustId";
|
|
98
|
+
readonly requestStream: false;
|
|
99
|
+
readonly responseStream: false;
|
|
100
|
+
readonly requestSerialize: (value: DeleteBureauDataByCustIdRequest) => Buffer;
|
|
101
|
+
readonly requestDeserialize: (value: Buffer) => DeleteBureauDataByCustIdRequest;
|
|
102
|
+
readonly responseSerialize: (value: DeleteBureauDataByCustIdResponse) => Buffer;
|
|
103
|
+
readonly responseDeserialize: (value: Buffer) => DeleteBureauDataByCustIdResponse;
|
|
104
|
+
};
|
|
95
105
|
};
|
|
96
106
|
export interface bureauServer extends UntypedServiceImplementation {
|
|
97
107
|
getBasicDetails: handleUnaryCall<detailsRequest, detailsResponse>;
|
|
@@ -103,6 +113,7 @@ export interface bureauServer extends UntypedServiceImplementation {
|
|
|
103
113
|
isChrEnabled: handleUnaryCall<requestParams, responseParams>;
|
|
104
114
|
getBureauScore: handleUnaryCall<getBureauScoreRequest, getBureauScoreResponse>;
|
|
105
115
|
getBureauReports: handleUnaryCall<getAllBureauReportRequest, getAllBureauReportResponse>;
|
|
116
|
+
deleteBureauDataByCustId: handleUnaryCall<DeleteBureauDataByCustIdRequest, DeleteBureauDataByCustIdResponse>;
|
|
106
117
|
}
|
|
107
118
|
export interface bureauClient extends Client {
|
|
108
119
|
getBasicDetails(request: detailsRequest, callback: (error: ServiceError | null, response: detailsResponse) => void): ClientUnaryCall;
|
|
@@ -132,6 +143,9 @@ export interface bureauClient extends Client {
|
|
|
132
143
|
getBureauReports(request: getAllBureauReportRequest, callback: (error: ServiceError | null, response: getAllBureauReportResponse) => void): ClientUnaryCall;
|
|
133
144
|
getBureauReports(request: getAllBureauReportRequest, metadata: Metadata, callback: (error: ServiceError | null, response: getAllBureauReportResponse) => void): ClientUnaryCall;
|
|
134
145
|
getBureauReports(request: getAllBureauReportRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: getAllBureauReportResponse) => void): ClientUnaryCall;
|
|
146
|
+
deleteBureauDataByCustId(request: DeleteBureauDataByCustIdRequest, callback: (error: ServiceError | null, response: DeleteBureauDataByCustIdResponse) => void): ClientUnaryCall;
|
|
147
|
+
deleteBureauDataByCustId(request: DeleteBureauDataByCustIdRequest, metadata: Metadata, callback: (error: ServiceError | null, response: DeleteBureauDataByCustIdResponse) => void): ClientUnaryCall;
|
|
148
|
+
deleteBureauDataByCustId(request: DeleteBureauDataByCustIdRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: DeleteBureauDataByCustIdResponse) => void): ClientUnaryCall;
|
|
135
149
|
}
|
|
136
150
|
export declare const bureauClient: {
|
|
137
151
|
new (address: string, credentials: ChannelCredentials, options?: Partial<ClientOptions>): bureauClient;
|
package/ts/bureau.js
CHANGED
|
@@ -8,6 +8,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
8
8
|
exports.bureauClient = exports.bureauService = exports.protobufPackage = void 0;
|
|
9
9
|
/* eslint-disable */
|
|
10
10
|
const grpc_js_1 = require("@grpc/grpc-js");
|
|
11
|
+
const deletebureaudatabycustid_1 = require("./bureau/deletebureaudatabycustid");
|
|
11
12
|
const getbasicdetails_1 = require("./bureau/getbasicdetails");
|
|
12
13
|
const getbureaudetails_1 = require("./bureau/getbureaudetails");
|
|
13
14
|
const getbureauscore_1 = require("./bureau/getbureauscore");
|
|
@@ -100,5 +101,14 @@ exports.bureauService = {
|
|
|
100
101
|
responseSerialize: (value) => Buffer.from(getbureaudetails_1.getAllBureauReportResponse.encode(value).finish()),
|
|
101
102
|
responseDeserialize: (value) => getbureaudetails_1.getAllBureauReportResponse.decode(value),
|
|
102
103
|
},
|
|
104
|
+
deleteBureauDataByCustId: {
|
|
105
|
+
path: "/service.bureau/deleteBureauDataByCustId",
|
|
106
|
+
requestStream: false,
|
|
107
|
+
responseStream: false,
|
|
108
|
+
requestSerialize: (value) => Buffer.from(deletebureaudatabycustid_1.DeleteBureauDataByCustIdRequest.encode(value).finish()),
|
|
109
|
+
requestDeserialize: (value) => deletebureaudatabycustid_1.DeleteBureauDataByCustIdRequest.decode(value),
|
|
110
|
+
responseSerialize: (value) => Buffer.from(deletebureaudatabycustid_1.DeleteBureauDataByCustIdResponse.encode(value).finish()),
|
|
111
|
+
responseDeserialize: (value) => deletebureaudatabycustid_1.DeleteBureauDataByCustIdResponse.decode(value),
|
|
112
|
+
},
|
|
103
113
|
};
|
|
104
114
|
exports.bureauClient = (0, grpc_js_1.makeGenericClientConstructor)(exports.bureauService, "service.bureau");
|