kcommons 13.9.0 → 13.9.2

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.
@@ -0,0 +1,6 @@
1
+ export declare enum SETTINGS_TABS {
2
+ USERPROFILE = "userprofile",
3
+ COMPANY_SETTINGS = "company_settings",
4
+ BILLING = "billing",
5
+ COMPANY_VENDORS = "company_vendors"
6
+ }
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SETTINGS_TABS = void 0;
4
+ var SETTINGS_TABS;
5
+ (function (SETTINGS_TABS) {
6
+ SETTINGS_TABS["USERPROFILE"] = "userprofile";
7
+ SETTINGS_TABS["COMPANY_SETTINGS"] = "company_settings";
8
+ SETTINGS_TABS["BILLING"] = "billing";
9
+ SETTINGS_TABS["COMPANY_VENDORS"] = "company_vendors";
10
+ })(SETTINGS_TABS || (exports.SETTINGS_TABS = SETTINGS_TABS = {}));
@@ -24,3 +24,75 @@ export interface IUDYAMResponse {
24
24
  msmeDfo: string;
25
25
  dateOfRegistration: string;
26
26
  }
27
+ export interface IUdyamApiResponsev2 {
28
+ status: string;
29
+ status_code: string;
30
+ message: string;
31
+ billable: string;
32
+ error: string | null;
33
+ data: MSMEData;
34
+ request_id: string;
35
+ sequence_id: string;
36
+ request_time: string;
37
+ response_time: string;
38
+ }
39
+ export interface MSMEData {
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[];
53
+ enterprise_type: EnterpriseType[];
54
+ national_industry_classification_code: NationalIndustryClassificationCode[];
55
+ official_address_of_enterprise: OfficialAddress;
56
+ updated_at: Record<string, unknown>;
57
+ }
58
+ 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;
70
+ }
71
+ export interface EnterpriseType {
72
+ 'sno.': string;
73
+ data_year: string;
74
+ classification_year: string;
75
+ enterprise_type: string;
76
+ classification_date: string;
77
+ }
78
+ 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;
85
+ }
86
+ 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;
95
+ pin: string;
96
+ mobile: string;
97
+ email: string;
98
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "13.9.0",
3
+ "version": "13.9.2",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",