@stashfin/grpc 1.2.676 → 1.2.677
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/deveqxcustomers.d.ts +14 -0
- package/ts/deveqxcustomers.js +10 -0
package/package.json
CHANGED
package/ts/deveqxcustomers.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { type CallOptions, ChannelCredentials, Client, type ClientOptions, type ClientUnaryCall, type handleUnaryCall, Metadata, type ServiceError, type UntypedServiceImplementation } from "@grpc/grpc-js";
|
|
2
2
|
import { authenticatUserRequest, authenticatUserResponse } from "./eqxcustomers/authenticateuser";
|
|
3
|
+
import { getCreditGuidanceRequest, getCreditGuidanceResponse } from "./eqxcustomers/creditguidance";
|
|
3
4
|
import { getCustomerByIdRequest, getCustomerByIdResponse } from "./eqxcustomers/getcustomerbyid";
|
|
4
5
|
import { getCustomerByMobileRequest, getCustomerByMobileResponse } from "./eqxcustomers/getcustomerbymobile";
|
|
5
6
|
import { getDashboardRequest, getDashboardResponse } from "./eqxcustomers/getdashboard";
|
|
@@ -142,6 +143,15 @@ export declare const deveqxcustomersService: {
|
|
|
142
143
|
readonly responseSerialize: (value: authenticatUserResponse) => Buffer;
|
|
143
144
|
readonly responseDeserialize: (value: Buffer) => authenticatUserResponse;
|
|
144
145
|
};
|
|
146
|
+
readonly getCreditGuidanceDetails: {
|
|
147
|
+
readonly path: "/service.deveqxcustomers/getCreditGuidanceDetails";
|
|
148
|
+
readonly requestStream: false;
|
|
149
|
+
readonly responseStream: false;
|
|
150
|
+
readonly requestSerialize: (value: getCreditGuidanceRequest) => Buffer;
|
|
151
|
+
readonly requestDeserialize: (value: Buffer) => getCreditGuidanceRequest;
|
|
152
|
+
readonly responseSerialize: (value: getCreditGuidanceResponse) => Buffer;
|
|
153
|
+
readonly responseDeserialize: (value: Buffer) => getCreditGuidanceResponse;
|
|
154
|
+
};
|
|
145
155
|
};
|
|
146
156
|
export interface deveqxcustomersServer extends UntypedServiceImplementation {
|
|
147
157
|
sendOtp: handleUnaryCall<sendOtpRequest, sendOtpResponse>;
|
|
@@ -158,6 +168,7 @@ export interface deveqxcustomersServer extends UntypedServiceImplementation {
|
|
|
158
168
|
updateCustomer: handleUnaryCall<updateCustomerRequest, updateCustomerResponse>;
|
|
159
169
|
getStashScoreProfileById: handleUnaryCall<getStashScoreProfileByIdRequest, getStashScoreProfileByIdResponse>;
|
|
160
170
|
authenticateUser: handleUnaryCall<authenticatUserRequest, authenticatUserResponse>;
|
|
171
|
+
getCreditGuidanceDetails: handleUnaryCall<getCreditGuidanceRequest, getCreditGuidanceResponse>;
|
|
161
172
|
}
|
|
162
173
|
export interface deveqxcustomersClient extends Client {
|
|
163
174
|
sendOtp(request: sendOtpRequest, callback: (error: ServiceError | null, response: sendOtpResponse) => void): ClientUnaryCall;
|
|
@@ -202,6 +213,9 @@ export interface deveqxcustomersClient extends Client {
|
|
|
202
213
|
authenticateUser(request: authenticatUserRequest, callback: (error: ServiceError | null, response: authenticatUserResponse) => void): ClientUnaryCall;
|
|
203
214
|
authenticateUser(request: authenticatUserRequest, metadata: Metadata, callback: (error: ServiceError | null, response: authenticatUserResponse) => void): ClientUnaryCall;
|
|
204
215
|
authenticateUser(request: authenticatUserRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: authenticatUserResponse) => void): ClientUnaryCall;
|
|
216
|
+
getCreditGuidanceDetails(request: getCreditGuidanceRequest, callback: (error: ServiceError | null, response: getCreditGuidanceResponse) => void): ClientUnaryCall;
|
|
217
|
+
getCreditGuidanceDetails(request: getCreditGuidanceRequest, metadata: Metadata, callback: (error: ServiceError | null, response: getCreditGuidanceResponse) => void): ClientUnaryCall;
|
|
218
|
+
getCreditGuidanceDetails(request: getCreditGuidanceRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: getCreditGuidanceResponse) => void): ClientUnaryCall;
|
|
205
219
|
}
|
|
206
220
|
export declare const deveqxcustomersClient: {
|
|
207
221
|
new (address: string, credentials: ChannelCredentials, options?: Partial<ClientOptions>): deveqxcustomersClient;
|
package/ts/deveqxcustomers.js
CHANGED
|
@@ -9,6 +9,7 @@ exports.deveqxcustomersClient = exports.deveqxcustomersService = exports.protobu
|
|
|
9
9
|
/* eslint-disable */
|
|
10
10
|
const grpc_js_1 = require("@grpc/grpc-js");
|
|
11
11
|
const authenticateuser_1 = require("./eqxcustomers/authenticateuser");
|
|
12
|
+
const creditguidance_1 = require("./eqxcustomers/creditguidance");
|
|
12
13
|
const getcustomerbyid_1 = require("./eqxcustomers/getcustomerbyid");
|
|
13
14
|
const getcustomerbymobile_1 = require("./eqxcustomers/getcustomerbymobile");
|
|
14
15
|
const getdashboard_1 = require("./eqxcustomers/getdashboard");
|
|
@@ -150,5 +151,14 @@ exports.deveqxcustomersService = {
|
|
|
150
151
|
responseSerialize: (value) => Buffer.from(authenticateuser_1.authenticatUserResponse.encode(value).finish()),
|
|
151
152
|
responseDeserialize: (value) => authenticateuser_1.authenticatUserResponse.decode(value),
|
|
152
153
|
},
|
|
154
|
+
getCreditGuidanceDetails: {
|
|
155
|
+
path: "/service.deveqxcustomers/getCreditGuidanceDetails",
|
|
156
|
+
requestStream: false,
|
|
157
|
+
responseStream: false,
|
|
158
|
+
requestSerialize: (value) => Buffer.from(creditguidance_1.getCreditGuidanceRequest.encode(value).finish()),
|
|
159
|
+
requestDeserialize: (value) => creditguidance_1.getCreditGuidanceRequest.decode(value),
|
|
160
|
+
responseSerialize: (value) => Buffer.from(creditguidance_1.getCreditGuidanceResponse.encode(value).finish()),
|
|
161
|
+
responseDeserialize: (value) => creditguidance_1.getCreditGuidanceResponse.decode(value),
|
|
162
|
+
},
|
|
153
163
|
};
|
|
154
164
|
exports.deveqxcustomersClient = (0, grpc_js_1.makeGenericClientConstructor)(exports.deveqxcustomersService, "service.deveqxcustomers");
|