kcommons 12.2.2 → 12.3.0

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
@@ -1,4 +1,5 @@
1
1
  export * from "date-fns";
2
+ export * from "./typings/releaseNote.typings";
2
3
  export * from "./typings/roles.typings";
3
4
  export * from "./typings/companyVendors.typings";
4
5
  export * from "./typings/department.typings";
package/build/index.js CHANGED
@@ -16,6 +16,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  // Libraries
18
18
  __exportStar(require("date-fns"), exports);
19
+ //superadmin
20
+ __exportStar(require("./typings/releaseNote.typings"), exports);
19
21
  // Includes
20
22
  __exportStar(require("./typings/roles.typings"), exports);
21
23
  __exportStar(require("./typings/companyVendors.typings"), exports);
@@ -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 = {}));
@@ -0,0 +1,10 @@
1
+ export interface IReleaseNote {
2
+ id: number;
3
+ title: string;
4
+ data: string;
5
+ version: string;
6
+ created_at: string;
7
+ updated_at: string;
8
+ }
9
+ export interface INestedReleaseNote extends IReleaseNote {
10
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "12.2.2",
3
+ "version": "12.3.0",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",