@stashfin/grpc 1.2.632 → 1.2.633

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stashfin/grpc",
3
- "version": "1.2.632",
3
+ "version": "1.2.633",
4
4
  "description": "Grpc proto manger",
5
5
  "scripts": {
6
6
  "prebuild": "rimraf src/ts && mkdirp src/ts && mkdirp dist",
@@ -0,0 +1,102 @@
1
+ import _m0 from "protobufjs/minimal";
2
+ export declare const protobufPackage = "loans.getlocdetails";
3
+ export interface GetLocDetailsRequest {
4
+ }
5
+ export interface GetLocDetailsResponse {
6
+ matched: boolean;
7
+ requested_amount: number;
8
+ tenure: number;
9
+ emi_amount: number;
10
+ net_amount_payable: number;
11
+ first_emi_date: string;
12
+ emi_date: string;
13
+ final_disbursal_amount: number;
14
+ upfront_interest: number;
15
+ approved_amount: number;
16
+ processing_fees: number;
17
+ gst: number;
18
+ loan_id: string;
19
+ rate_of_interest: number;
20
+ bill_amount?: string | undefined;
21
+ early_foreclosure_fees: number;
22
+ convenience_fees: number;
23
+ total_interest_pay: number;
24
+ effective_annual_rate: number;
25
+ transaction_rate: number;
26
+ transaction_fee_amount: number;
27
+ emi_date_l: string;
28
+ emi_amount_l: string;
29
+ first_emi_date_l: string;
30
+ final_disbursal_amount_l: string;
31
+ upfront_interest_l: string;
32
+ processing_fees_l: string;
33
+ gst_l: string;
34
+ rate_of_interest_l: string;
35
+ trans_fee_plus_gst: number;
36
+ processing_fee_plus_gst: number;
37
+ bill_amount_l: string;
38
+ early_foreclosure_fees_l: string;
39
+ convenience_fees_l: string;
40
+ total_interest_pay_l: number;
41
+ effective_annual_rate_l: string;
42
+ trans_fee_plus_gst_l: number;
43
+ processing_fee_plus_gst_l: number;
44
+ max_amount_l: string;
45
+ credit_report_fees_l: string;
46
+ fee_and_charges_l: string;
47
+ fee_and_charges: number;
48
+ add_on_l: string;
49
+ total_loan_amount_l: string;
50
+ loan_amount_l: string;
51
+ disbursed_amount_l: string;
52
+ total_payable_amount_l: string;
53
+ disbursal_amount_l: string;
54
+ fcp_interest: number;
55
+ number_of_emi_l: string;
56
+ first_emi_amt_l: string;
57
+ subsequent_emi_l: string;
58
+ effective_roi: number;
59
+ effective_roi_l: string;
60
+ effective_annual_roi: number;
61
+ effective_annual_roi_l: string;
62
+ insurance_l: string;
63
+ emi_card_description: string;
64
+ bill_card_description: string;
65
+ installment_amounts: string;
66
+ apr_title: string;
67
+ apr_value: string;
68
+ apr_type: string;
69
+ credit_line_details_sheet: string;
70
+ Acknowledgement: string;
71
+ payment_undertaking: string;
72
+ key_fact_statement: string;
73
+ sanction_letter: string;
74
+ financing_documents: string;
75
+ }
76
+ export declare const GetLocDetailsRequest: {
77
+ encode(_: GetLocDetailsRequest, writer?: _m0.Writer): _m0.Writer;
78
+ decode(input: _m0.Reader | Uint8Array, length?: number): GetLocDetailsRequest;
79
+ fromJSON(_: any): GetLocDetailsRequest;
80
+ toJSON(_: GetLocDetailsRequest): unknown;
81
+ create<I extends Exact<DeepPartial<GetLocDetailsRequest>, I>>(base?: I): GetLocDetailsRequest;
82
+ fromPartial<I extends Exact<DeepPartial<GetLocDetailsRequest>, I>>(_: I): GetLocDetailsRequest;
83
+ };
84
+ export declare const GetLocDetailsResponse: {
85
+ encode(message: GetLocDetailsResponse, writer?: _m0.Writer): _m0.Writer;
86
+ decode(input: _m0.Reader | Uint8Array, length?: number): GetLocDetailsResponse;
87
+ fromJSON(object: any): GetLocDetailsResponse;
88
+ toJSON(message: GetLocDetailsResponse): unknown;
89
+ create<I extends Exact<DeepPartial<GetLocDetailsResponse>, I>>(base?: I): GetLocDetailsResponse;
90
+ fromPartial<I extends Exact<DeepPartial<GetLocDetailsResponse>, I>>(object: I): GetLocDetailsResponse;
91
+ };
92
+ type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
93
+ 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 {} ? {
94
+ [K in keyof T]?: DeepPartial<T[K]>;
95
+ } : Partial<T>;
96
+ type KeysOfUnion<T> = T extends T ? keyof T : never;
97
+ export type Exact<P, I extends P> = P extends Builtin ? P : P & {
98
+ [K in keyof P]: Exact<P[K], I[K]>;
99
+ } & {
100
+ [K in Exclude<keyof I, KeysOfUnion<P>>]: never;
101
+ };
102
+ export {};