kcommons 13.8.3 → 13.9.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.
@@ -190,3 +190,20 @@ export interface ICompanyVendorAdditionalInfoMappingConfig {
190
190
  mapped_form_type: CONFIGURABLE_FORM_TYPES | null;
191
191
  mapped_que_id: string | null;
192
192
  }
193
+ /** --- FOR VENDOR --- */
194
+ export declare enum COMPANY_METAFIELDS_INCLUDE {
195
+ po_recieved_count = "po_recieved_count",
196
+ po_accepted_count = "po_accepted_count",
197
+ quotes_responded_count = "quotes_responded_count",
198
+ quotes_requested_count = "quotes_requested_count"
199
+ }
200
+ export interface ICompanyMetaFields {
201
+ po_recieved_count: number | null;
202
+ po_accepted_count: number | null;
203
+ quotes_requested_count: number | null;
204
+ quotes_responded_count: number | null;
205
+ }
206
+ export interface ICompanyWithMetaFieldsResponse {
207
+ company: ICompany | null;
208
+ metafields: ICompanyMetaFields | null;
209
+ }
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.COMPANY_INCLUDE = exports.PRICING_PLANS = void 0;
3
+ exports.COMPANY_METAFIELDS_INCLUDE = exports.COMPANY_INCLUDE = exports.PRICING_PLANS = void 0;
4
4
  var PRICING_PLANS;
5
5
  (function (PRICING_PLANS) {
6
6
  PRICING_PLANS["BASIC"] = "BASIC";
@@ -60,3 +60,11 @@ var COMPANY_INCLUDE;
60
60
  })(COMPANY_INCLUDE || (exports.COMPANY_INCLUDE = COMPANY_INCLUDE = {}));
61
61
  // export interface IUpdateVendorOnboardingRequestCategoriesInputs
62
62
  // extends Pick<ICompany, "vendor_onboarding_request_categories"> {}
63
+ /** --- FOR VENDOR --- */
64
+ var COMPANY_METAFIELDS_INCLUDE;
65
+ (function (COMPANY_METAFIELDS_INCLUDE) {
66
+ COMPANY_METAFIELDS_INCLUDE["po_recieved_count"] = "po_recieved_count";
67
+ COMPANY_METAFIELDS_INCLUDE["po_accepted_count"] = "po_accepted_count";
68
+ COMPANY_METAFIELDS_INCLUDE["quotes_responded_count"] = "quotes_responded_count";
69
+ COMPANY_METAFIELDS_INCLUDE["quotes_requested_count"] = "quotes_requested_count";
70
+ })(COMPANY_METAFIELDS_INCLUDE || (exports.COMPANY_METAFIELDS_INCLUDE = COMPANY_METAFIELDS_INCLUDE = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "13.8.3",
3
+ "version": "13.9.0",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",