kcommons 5.24.2 → 5.24.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.
@@ -125,5 +125,9 @@ export declare const companyNavConfig: {
125
125
  list: (tab?: COMPANY_VENDOR_LIST_TABS) => string;
126
126
  view: (companyVendorId: string) => string;
127
127
  };
128
+ vendorDiscovery: {
129
+ list: string;
130
+ details: (vendor_id: string) => string;
131
+ };
128
132
  };
129
133
  };
@@ -127,5 +127,9 @@ exports.companyNavConfig = {
127
127
  list: (tab) => `/vendors/vendor-list${tab ? `?tab=${tab}` : ""}`,
128
128
  view: (companyVendorId) => `/vendors/vendor-list/${companyVendorId}`,
129
129
  },
130
+ vendorDiscovery: {
131
+ list: "/vendors/vendor-discovery",
132
+ details: (vendor_id) => `/vendors/vendor-discovery/details/${vendor_id}/view`,
133
+ },
130
134
  },
131
135
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "5.24.2",
3
+ "version": "5.24.3",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.js",