kcommons 13.5.2 → 13.5.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.
package/build/index.d.ts CHANGED
@@ -63,6 +63,7 @@ export * from "./typings/common/paginationFilters.typings";
63
63
  export * from "./typings/common/uploadMedia.typings";
64
64
  export * from "./typings/common/retrieveMedia.typings";
65
65
  export * from "./typings/common/lifecycleLogger.typings";
66
+ export * from "./typings/common/openUOM.typings";
66
67
  export * from "./constants/permission.constants";
67
68
  export * from "./constants/entityTypes.constants";
68
69
  export * from "./constants/statuses.constants";
package/build/index.js CHANGED
@@ -83,6 +83,7 @@ __exportStar(require("./typings/common/paginationFilters.typings"), exports);
83
83
  __exportStar(require("./typings/common/uploadMedia.typings"), exports);
84
84
  __exportStar(require("./typings/common/retrieveMedia.typings"), exports);
85
85
  __exportStar(require("./typings/common/lifecycleLogger.typings"), exports);
86
+ __exportStar(require("./typings/common/openUOM.typings"), exports);
86
87
  // Constants
87
88
  __exportStar(require("./constants/permission.constants"), exports);
88
89
  __exportStar(require("./constants/entityTypes.constants"), exports);
@@ -0,0 +1,4 @@
1
+ export interface IOpenUOM {
2
+ full_form: string;
3
+ short_from: string;
4
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ export interface IUOM {
2
+ full_form: string;
3
+ short_from: string;
4
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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 = {}));
@@ -1,11 +1,13 @@
1
1
  import { IPaginationFilters } from "./common/paginationFilters.typings";
2
2
  import { INestedCompany } from "./company.typings";
3
3
  import { INestedVendorItem } from "./vendorItem.typings";
4
- export interface ICompanySpecificVendorItemVersionFiltersForVendor extends IPaginationFilters {
4
+ export interface ICompanySpecificVendorItemVersionFilters {
5
5
  vendor_item_id?: string;
6
6
  company_id?: string;
7
7
  include?: COMPANY_SPECIFIC_VENDOR_ITEM_VERSION_INCLUDE[];
8
8
  }
9
+ export interface ICompanySpecificVendorItemVersionFiltersWithPagination extends IPaginationFilters, ICompanySpecificVendorItemVersionFilters {
10
+ }
9
11
  export declare enum COMPANY_SPECIFIC_VENDOR_ITEM_VERSION_INCLUDE {
10
12
  company = "company",
11
13
  vendorItem = "vendorItem"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "13.5.2",
3
+ "version": "13.5.3",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",