kcommons 10.3.0 → 10.4.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.
@@ -10,6 +10,7 @@ import { INestedRFQ, INestedRFQItem } from "./rfq.typings";
10
10
  import { INestedStoreLocation } from "./storeLocation.typings";
11
11
  import { INestedUser } from "./user.typings";
12
12
  import { INestedVendor } from "./vendor.typings";
13
+ export declare const QUOTE_COOLDOWN_DURATION_IN_MS: number;
13
14
  export declare enum QUOTE_TYPE {
14
15
  RFQ_ASCENDANT = "RFQ_ASCENDANT",
15
16
  DIRECT = "DIRECT"
@@ -61,6 +62,7 @@ export interface IQuote {
61
62
  quoted_at?: string | null;
62
63
  can_negotiate: boolean;
63
64
  is_deleted?: boolean | null;
65
+ last_followup_at?: string | null;
64
66
  deleted_at?: string | null;
65
67
  created_at?: string | null;
66
68
  updated_at?: string | null;
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.QUOTE_ITEM_INCLUDES = exports.QUOTE_INCLUDES = exports.QUOTE_META_INCLUDES = exports.QUOTE_STATUS = exports.QUOTE_TYPE = void 0;
3
+ exports.QUOTE_ITEM_INCLUDES = exports.QUOTE_INCLUDES = exports.QUOTE_META_INCLUDES = exports.QUOTE_STATUS = exports.QUOTE_TYPE = exports.QUOTE_COOLDOWN_DURATION_IN_MS = void 0;
4
+ exports.QUOTE_COOLDOWN_DURATION_IN_MS = 3 * 60 * 60 * 1000;
4
5
  var QUOTE_TYPE;
5
6
  (function (QUOTE_TYPE) {
6
7
  QUOTE_TYPE["RFQ_ASCENDANT"] = "RFQ_ASCENDANT";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "10.3.0",
3
+ "version": "10.4.0",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",