kcommons 5.27.7 → 5.27.8

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.
@@ -113,6 +113,10 @@ export declare const companyNavConfig: {
113
113
  edit: (grn_id: string) => string;
114
114
  view: (grn_id: string) => string;
115
115
  };
116
+ asns: {
117
+ list: string;
118
+ view: (asn_id: string) => string;
119
+ };
116
120
  };
117
121
  vendorMaster: {
118
122
  vendorGroups: {
@@ -115,6 +115,10 @@ exports.companyNavConfig = {
115
115
  edit: (grn_id) => `/gate/grn/${grn_id}/edit`,
116
116
  view: (grn_id) => `/gate/grn/${grn_id}/view`,
117
117
  },
118
+ asns: {
119
+ list: `/gate/asns`,
120
+ view: (asn_id) => `/gate/asns/${asn_id}/view`,
121
+ },
118
122
  },
119
123
  vendorMaster: {
120
124
  vendorGroups: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "5.27.7",
3
+ "version": "5.27.8",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.js",