@stashfin/grpc 1.2.508 → 1.2.510
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 +1 -1
- package/ts/upi.d.ts +6 -6
- package/ts/upi.js +2 -2
package/package.json
CHANGED
package/ts/upi.d.ts
CHANGED
|
@@ -155,8 +155,8 @@ export declare const upiService: {
|
|
|
155
155
|
readonly responseSerialize: (value: getTransactionsResponse) => Buffer;
|
|
156
156
|
readonly responseDeserialize: (value: Buffer) => getTransactionsResponse;
|
|
157
157
|
};
|
|
158
|
-
readonly
|
|
159
|
-
readonly path: "/service.upi/
|
|
158
|
+
readonly getRecentContacts: {
|
|
159
|
+
readonly path: "/service.upi/getRecentContacts";
|
|
160
160
|
readonly requestStream: false;
|
|
161
161
|
readonly responseStream: false;
|
|
162
162
|
readonly requestSerialize: (value: getRecentContactsRequest) => Buffer;
|
|
@@ -199,7 +199,7 @@ export interface upiServer extends UntypedServiceImplementation {
|
|
|
199
199
|
validateIfsc: handleUnaryCall<validateIFSCRequest, validateIFSCResponse>;
|
|
200
200
|
getPendingCollectRequest: handleUnaryCall<pendingCollectRequest, pendingCollectResponse>;
|
|
201
201
|
getTransactions: handleUnaryCall<getTransactionsRequest, getTransactionsResponse>;
|
|
202
|
-
|
|
202
|
+
getRecentContacts: handleUnaryCall<getRecentContactsRequest, getRecentContactsResponse>;
|
|
203
203
|
deregisterProfile: handleUnaryCall<deregisterProfileReqeust, deregisterProfileResponse>;
|
|
204
204
|
upiNumberOperations: handleUnaryCall<upiNumberOperationsRequest, upiNumberOperationsResponse>;
|
|
205
205
|
}
|
|
@@ -249,9 +249,9 @@ export interface upiClient extends Client {
|
|
|
249
249
|
getTransactions(request: getTransactionsRequest, callback: (error: ServiceError | null, response: getTransactionsResponse) => void): ClientUnaryCall;
|
|
250
250
|
getTransactions(request: getTransactionsRequest, metadata: Metadata, callback: (error: ServiceError | null, response: getTransactionsResponse) => void): ClientUnaryCall;
|
|
251
251
|
getTransactions(request: getTransactionsRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: getTransactionsResponse) => void): ClientUnaryCall;
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
252
|
+
getRecentContacts(request: getRecentContactsRequest, callback: (error: ServiceError | null, response: getRecentContactsResponse) => void): ClientUnaryCall;
|
|
253
|
+
getRecentContacts(request: getRecentContactsRequest, metadata: Metadata, callback: (error: ServiceError | null, response: getRecentContactsResponse) => void): ClientUnaryCall;
|
|
254
|
+
getRecentContacts(request: getRecentContactsRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: getRecentContactsResponse) => void): ClientUnaryCall;
|
|
255
255
|
deregisterProfile(request: deregisterProfileReqeust, callback: (error: ServiceError | null, response: deregisterProfileResponse) => void): ClientUnaryCall;
|
|
256
256
|
deregisterProfile(request: deregisterProfileReqeust, metadata: Metadata, callback: (error: ServiceError | null, response: deregisterProfileResponse) => void): ClientUnaryCall;
|
|
257
257
|
deregisterProfile(request: deregisterProfileReqeust, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: deregisterProfileResponse) => void): ClientUnaryCall;
|
package/ts/upi.js
CHANGED
|
@@ -163,8 +163,8 @@ exports.upiService = {
|
|
|
163
163
|
responseSerialize: (value) => Buffer.from(gettransactions_1.getTransactionsResponse.encode(value).finish()),
|
|
164
164
|
responseDeserialize: (value) => gettransactions_1.getTransactionsResponse.decode(value),
|
|
165
165
|
},
|
|
166
|
-
|
|
167
|
-
path: "/service.upi/
|
|
166
|
+
getRecentContacts: {
|
|
167
|
+
path: "/service.upi/getRecentContacts",
|
|
168
168
|
requestStream: false,
|
|
169
169
|
responseStream: false,
|
|
170
170
|
requestSerialize: (value) => Buffer.from(getrecentcontacts_1.getRecentContactsRequest.encode(value).finish()),
|