kcommons 6.1.0 → 6.1.2

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
@@ -62,3 +62,4 @@ export * from "./templates/notifications/quote.notifications";
62
62
  export * from "./typings/verification_apis/pincode.typings";
63
63
  export * from "./typings/verification_apis/gstVerification.typings";
64
64
  export * from "./typings/kpis/company/testKpi.typings";
65
+ export * from "./typings/kpis/company/purchase/testPuchaseKpi.typings";
package/build/index.js CHANGED
@@ -85,3 +85,4 @@ __exportStar(require("./typings/verification_apis/pincode.typings"), exports);
85
85
  __exportStar(require("./typings/verification_apis/gstVerification.typings"), exports);
86
86
  // Company KPIs
87
87
  __exportStar(require("./typings/kpis/company/testKpi.typings"), exports);
88
+ __exportStar(require("./typings/kpis/company/purchase/testPuchaseKpi.typings"), exports);
@@ -0,0 +1,9 @@
1
+ export interface IPurchaseTestKPIResponse {
2
+ rfq_count: number;
3
+ po_count: number;
4
+ quotes: number;
5
+ }
6
+ export interface IPurchaseTestKPIFilters {
7
+ start_date: string;
8
+ end_date: string;
9
+ }
@@ -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": "6.1.0",
3
+ "version": "6.1.2",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.js",