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 +1 -0
- package/build/index.js +1 -0
- package/build/typings/common/openUOM.typings.d.ts +4 -0
- package/build/typings/common/openUOM.typings.js +2 -0
- package/build/typings/common/uom.typings.d.ts +4 -0
- package/build/typings/common/uom.typings.js +2 -0
- package/build/typings/company/settings/CompanySettings.typings.d.ts +6 -0
- package/build/typings/company/settings/CompanySettings.typings.js +10 -0
- package/build/typings/companySepcificVendorItems.typings.d.ts +3 -1
- package/package.json +1 -1
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,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
|
|
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"
|