kcommons 14.24.0 → 14.25.1

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.
@@ -58,7 +58,7 @@ export declare enum PRICING_PLANS {
58
58
  ADVANCE = "ADVANCE"
59
59
  }
60
60
  export interface IVendorOnboardingCompaniesFilter extends IPaginationFilters {
61
- vendor_id?: string;
61
+ name?: string;
62
62
  }
63
63
  export declare enum COMPANY_INCLUDE {
64
64
  associated_purchase_locations = "associated_purchase_locations",
@@ -1,9 +1,10 @@
1
1
  import { IVendorCommonKPIFilters } from "../vendorKpisCommons.typings";
2
2
  export interface IVRFQAnalyticsResponse {
3
- total: number;
4
- quoted: number;
5
- pending: number;
6
- negotiation: number;
3
+ total: number | null;
4
+ quoted: number | null;
5
+ pending: number | null;
6
+ negotiation: number | null;
7
+ dealing_companies_count: number | null;
7
8
  }
8
9
  export interface IVRFQAnalyticsKPIFilters extends IVendorCommonKPIFilters {
9
10
  }
@@ -106,6 +106,7 @@ export interface IOPEN_QUOTE_TOKEN_PAYLOAD {
106
106
  }
107
107
  export interface IQuoteFilters {
108
108
  company_id?: string;
109
+ name?: string;
109
110
  include?: QUOTE_INCLUDES[];
110
111
  }
111
112
  export interface IQuoteFiltersWithPagination extends IPaginationFilters, IQuoteFilters {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "14.24.0",
3
+ "version": "14.25.1",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",