kcommons 14.23.2 → 14.23.4
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.
|
@@ -101,4 +101,4 @@ export interface AadhaarParsedData {
|
|
|
101
101
|
}
|
|
102
102
|
export declare const parseAadhaarXML: (xmlString: string) => AadhaarParsedData | null;
|
|
103
103
|
export declare const calculateAge: (dob: string) => number;
|
|
104
|
-
export declare const UNDER_AGE_LIMIT =
|
|
104
|
+
export declare const UNDER_AGE_LIMIT = 14;
|
|
@@ -38,63 +38,63 @@ export interface IUdyamApiResponsev2 {
|
|
|
38
38
|
}
|
|
39
39
|
export interface MSMEData {
|
|
40
40
|
udyam_number: string;
|
|
41
|
-
|
|
42
|
-
"
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
"
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
"
|
|
41
|
+
DIC: string;
|
|
42
|
+
"Date of Commencement of Production/Business": string;
|
|
43
|
+
"Date of Incorporation": string;
|
|
44
|
+
"Date of Udyam Registration": string;
|
|
45
|
+
Gender: string;
|
|
46
|
+
"MSME-DFO": string;
|
|
47
|
+
"Major Activity": string;
|
|
48
|
+
"Name of Enterprise": string;
|
|
49
|
+
"Organisation Type": string;
|
|
50
|
+
"Social Category": string;
|
|
51
|
+
"Udyam Registration Number": string;
|
|
52
|
+
"Unit/Plant Locations Details": UnitPlantLocation[];
|
|
53
53
|
enterprise_type: EnterpriseType[];
|
|
54
54
|
national_industry_classification_code: NationalIndustryClassificationCode[];
|
|
55
55
|
official_address_of_enterprise: OfficialAddress;
|
|
56
|
-
|
|
56
|
+
updatedAt: string;
|
|
57
57
|
}
|
|
58
58
|
export interface UnitPlantLocation {
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
"
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
59
|
+
SN: string;
|
|
60
|
+
"Unit Name": string;
|
|
61
|
+
Flat: string;
|
|
62
|
+
Building: string;
|
|
63
|
+
"Village/Town": string;
|
|
64
|
+
Block: string;
|
|
65
|
+
Road: string;
|
|
66
|
+
City: string;
|
|
67
|
+
Pin: string;
|
|
68
|
+
State: string;
|
|
69
|
+
District: string;
|
|
70
70
|
}
|
|
71
71
|
export interface EnterpriseType {
|
|
72
|
-
"
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
72
|
+
"SNo.": string;
|
|
73
|
+
"Data Year": string;
|
|
74
|
+
"Classification Year": string;
|
|
75
|
+
"Enterprise Type": string;
|
|
76
|
+
"Classification Date": string;
|
|
77
77
|
}
|
|
78
78
|
export interface NationalIndustryClassificationCode {
|
|
79
|
-
"
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
79
|
+
"SNo.": string;
|
|
80
|
+
"Nic 2 Digit": string;
|
|
81
|
+
"Nic 4 Digit": string;
|
|
82
|
+
"Nic 5 Digit": string;
|
|
83
|
+
Activity: string;
|
|
84
|
+
Date: string;
|
|
85
85
|
}
|
|
86
86
|
export interface OfficialAddress {
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
|
|
91
|
-
"
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
87
|
+
"Flat/Door/Block No.": string;
|
|
88
|
+
"Name of Premises/ Building": string;
|
|
89
|
+
"Village/Town": string;
|
|
90
|
+
Block: string;
|
|
91
|
+
"Road/Street/Lane": string;
|
|
92
|
+
City: string;
|
|
93
|
+
State: string;
|
|
94
|
+
District: string;
|
|
95
95
|
pin: string;
|
|
96
|
-
|
|
97
|
-
|
|
96
|
+
Mobile: string;
|
|
97
|
+
Email: string;
|
|
98
98
|
}
|
|
99
99
|
export interface IVerifyUdyamReq {
|
|
100
100
|
udyam_no: string;
|