kcommons 14.28.1 → 14.28.3

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.
@@ -35,3 +35,22 @@ export interface IIFSCData {
35
35
  address: string | null;
36
36
  contact: string | null;
37
37
  }
38
+ export interface IFSCAPIResponse {
39
+ ADDRESS: string;
40
+ MICR: string;
41
+ IMPS: boolean;
42
+ SWIFT: string;
43
+ NEFT: boolean;
44
+ ISO3166: string;
45
+ DISTRICT: string;
46
+ RTGS: boolean;
47
+ CENTRE: string;
48
+ UPI: boolean;
49
+ STATE: string;
50
+ CITY: string;
51
+ BRANCH: string;
52
+ CONTACT: string;
53
+ BANK: string;
54
+ BANKCODE: string;
55
+ IFSC: string;
56
+ }
@@ -2,6 +2,16 @@ export interface IGSTReturnFilingFrequencyResponseUnit {
2
2
  quarter: string;
3
3
  preference: string;
4
4
  }
5
+ export type GSTReturnType = "GSTR1" | "GSTR3B" | "CMP08" | "GSTR4" | "GSTR9" | "GSTR9C";
6
+ export interface IGSTReturnFilingStatusResponseUnit {
7
+ fy: string;
8
+ taxp: string;
9
+ mof: string;
10
+ dof: string;
11
+ rtntype: GSTReturnType;
12
+ arn: string;
13
+ status: string;
14
+ }
5
15
  export interface IGSTReturnFilingFrequencyResponse {
6
16
  status: number;
7
17
  data: {
@@ -12,15 +22,6 @@ export interface IGSTReturnFilingFrequencyReq {
12
22
  fy: string;
13
23
  gstin: string;
14
24
  }
15
- export interface IGSTReturnFilingStatusResponseUnit {
16
- fy: string;
17
- taxp: string;
18
- mof: string;
19
- dof: string;
20
- rtntype: string;
21
- arn: string;
22
- status: string;
23
- }
24
25
  export interface IGSTReturnFilingStatusResponse {
25
26
  filingStatus: IGSTReturnFilingStatusResponseUnit[][];
26
27
  }
@@ -38,63 +38,64 @@ export interface IUdyamApiResponsev2 {
38
38
  }
39
39
  export interface MSMEData {
40
40
  udyam_number: string;
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[];
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
- updatedAt: string;
56
+ updated_at: Record<string, unknown>;
57
+ pdf: string;
57
58
  }
58
59
  export interface UnitPlantLocation {
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;
60
+ sn: string;
61
+ unit_name: string;
62
+ flat: string;
63
+ building: string;
64
+ "village/town": string;
65
+ block: string;
66
+ road: string;
67
+ city: string;
68
+ pin: string;
69
+ state: string;
70
+ district: string;
70
71
  }
71
72
  export interface EnterpriseType {
72
- "SNo.": string;
73
- "Data Year": string;
74
- "Classification Year": string;
75
- "Enterprise Type": string;
76
- "Classification Date": string;
73
+ "sno.": string;
74
+ data_year: string;
75
+ classification_year: string;
76
+ enterprise_type: string;
77
+ classification_date: string;
77
78
  }
78
79
  export interface NationalIndustryClassificationCode {
79
- "SNo.": string;
80
- "Nic 2 Digit": string;
81
- "Nic 4 Digit": string;
82
- "Nic 5 Digit": string;
83
- Activity: string;
84
- Date: string;
80
+ "sno.": string;
81
+ nic_2_digit: string;
82
+ nic_4_digit: string;
83
+ nic_5_digit: string;
84
+ activity: string;
85
+ date: string;
85
86
  }
86
87
  export interface OfficialAddress {
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;
88
+ "flat/door/block_no.": string;
89
+ "name_of_premises/_building": string;
90
+ "village/town": string;
91
+ block: string;
92
+ "road/street/lane": string;
93
+ city: string;
94
+ state: string;
95
+ district: string;
95
96
  pin: string;
96
- Mobile: string;
97
- Email: string;
97
+ mobile: string;
98
+ email: string;
98
99
  }
99
100
  export interface IVerifyUdyamReq {
100
101
  udyam_no: string;
@@ -1,2 +1,66 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ // New Udyam Data format - 21/Feb/2026 onwards //
4
+ // export interface MSMEData {
5
+ // udyam_number: string;
6
+ // DIC: string;
7
+ // "Date of Commencement of Production/Business": string;
8
+ // "Date of Incorporation": string;
9
+ // "Date of Udyam Registration": string;
10
+ // Gender: string;
11
+ // "MSME-DFO": string;
12
+ // "Major Activity": string;
13
+ // "Name of Enterprise": string;
14
+ // "Organisation Type": string;
15
+ // "Social Category": string;
16
+ // "Udyam Registration Number": string;
17
+ // "Unit/Plant Locations Details": UnitPlantLocation[];
18
+ // enterprise_type: EnterpriseType[];
19
+ // national_industry_classification_code: NationalIndustryClassificationCode[];
20
+ // official_address_of_enterprise: OfficialAddress;
21
+ // updatedAt: string;
22
+ // }
23
+ // export interface UnitPlantLocation {
24
+ // SN: string;
25
+ // "Unit Name": string;
26
+ // Flat: string;
27
+ // Building: string;
28
+ // "Village/Town": string;
29
+ // Block: string;
30
+ // Road: string;
31
+ // City: string;
32
+ // Pin: string;
33
+ // State: string;
34
+ // District: string;
35
+ // }
36
+ // export interface EnterpriseType {
37
+ // "SNo.": string;
38
+ // "Data Year": string;
39
+ // "Classification Year": string;
40
+ // "Enterprise Type": string;
41
+ // "Classification Date": string;
42
+ // }
43
+ // export interface NationalIndustryClassificationCode {
44
+ // "SNo.": string;
45
+ // "Nic 2 Digit": string;
46
+ // "Nic 4 Digit": string;
47
+ // "Nic 5 Digit": string;
48
+ // Activity: string;
49
+ // Date: string;
50
+ // }
51
+ // export interface OfficialAddress {
52
+ // "Flat/Door/Block No.": string;
53
+ // "Name of Premises/ Building": string;
54
+ // "Village/Town": string;
55
+ // Block: string;
56
+ // "Road/Street/Lane": string;
57
+ // City: string;
58
+ // State: string;
59
+ // District: string;
60
+ // pin: string;
61
+ // Mobile: string;
62
+ // Email: string;
63
+ // }
64
+ // export interface IVerifyUdyamReq {
65
+ // udyam_no: string;
66
+ // }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "14.28.1",
3
+ "version": "14.28.3",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",