kcommons 6.2.11 → 6.2.13

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.
@@ -82,7 +82,8 @@ export declare enum COMPANY_ROUTE_IDS {
82
82
  CMP_VDR_VIEW = "CMP_VDR_VIEW",
83
83
  VDR_DSC_LST = "VDR_DSC_LST",
84
84
  VDR_DSC_VIEW = "VDR_DSC_VIEW",
85
- VDR_ONB_FRM = "VDR_ONB_FRM"
85
+ VDR_ONB_FRM = "VDR_ONB_FRM",
86
+ CNT_PPL_LST = "CNT_PPL_TST"
86
87
  }
87
88
  export interface ICompanyRouteConfig {
88
89
  route: ((args: any) => string) | string;
@@ -104,6 +105,12 @@ export declare const companyNavConfig: {
104
105
  };
105
106
  };
106
107
  company: {
108
+ contact_people: {
109
+ list: {
110
+ route: string;
111
+ id: COMPANY_ROUTE_IDS;
112
+ };
113
+ };
107
114
  offices: {
108
115
  list: {
109
116
  route: string;
@@ -86,6 +86,7 @@ var COMPANY_ROUTE_IDS;
86
86
  COMPANY_ROUTE_IDS["VDR_DSC_LST"] = "VDR_DSC_LST";
87
87
  COMPANY_ROUTE_IDS["VDR_DSC_VIEW"] = "VDR_DSC_VIEW";
88
88
  COMPANY_ROUTE_IDS["VDR_ONB_FRM"] = "VDR_ONB_FRM";
89
+ COMPANY_ROUTE_IDS["CNT_PPL_LST"] = "CNT_PPL_TST";
89
90
  })(COMPANY_ROUTE_IDS || (exports.COMPANY_ROUTE_IDS = COMPANY_ROUTE_IDS = {}));
90
91
  exports.companyNavConfig = {
91
92
  root: {
@@ -103,6 +104,12 @@ exports.companyNavConfig = {
103
104
  },
104
105
  },
105
106
  company: {
107
+ contact_people: {
108
+ list: {
109
+ route: `/company/contact-people?route_id=${COMPANY_ROUTE_IDS.CNT_PPL_LST}`,
110
+ id: COMPANY_ROUTE_IDS.CNT_PPL_LST,
111
+ },
112
+ },
106
113
  offices: {
107
114
  list: {
108
115
  route: `/company/offices?route_id=${COMPANY_ROUTE_IDS.OFF_LST}`,
@@ -87,6 +87,7 @@ export interface ICompany extends IAddress {
87
87
  id: string;
88
88
  trade_name: string;
89
89
  max_users: number;
90
+ company_logo: string | null;
90
91
  selected_price_plan: PRICING_PLANS;
91
92
  created_at: string | null;
92
93
  updated_at: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "6.2.11",
3
+ "version": "6.2.13",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.js",