kcommons 5.2.3 → 5.2.4

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.
@@ -1,12 +1,14 @@
1
1
  import { INestedApprovalChainEntry } from "./approvalChain.typings";
2
2
  import { INestedCompanyVendors } from "./companyVendors.typings";
3
3
  import { INestedUser } from "./user.typings";
4
+ import { INestedVendor, IVendor } from "./vendor.typings";
4
5
  import { INestedVendorGroups } from "./vendorGroup.typings";
5
6
  export declare enum RFQ_INCLUDES {
6
7
  approval_chain = "approval_chain",
7
8
  items = "items",
8
9
  rfq_vendors = "rfq_vendors",
9
- rfq_vendor_groups = "rfq_vendor_groups"
10
+ rfq_vendor_groups = "rfq_vendor_groups",
11
+ additional_vendors = "additional_vendors"
10
12
  }
11
13
  export declare enum RFQ_STATUS {
12
14
  DRAFT = "DRAFT",
@@ -25,6 +27,8 @@ export declare enum BIDDING_TYPES {
25
27
  OPEN = "open_bidding",
26
28
  CLOSED = "closed_bidding"
27
29
  }
30
+ export interface IAdditionalVendorInput extends Pick<IVendor, "email" | "contact" | "vendor_legal_name"> {
31
+ }
28
32
  export interface IRFQ {
29
33
  id: string;
30
34
  rfq_no: string;
@@ -52,8 +56,9 @@ export interface IRFQ {
52
56
  approval_chain?: INestedApprovalChainEntry[] | null;
53
57
  rfq_vendor_groups?: INestedVendorGroups[] | null;
54
58
  rfq_vendors?: INestedCompanyVendors[] | null;
59
+ additional_vendors?: INestedVendor[] | null;
55
60
  }
56
- export interface INestedRFQ extends Omit<IRFQ, "items" | "approval_chain" | "rfq_vendor_groups" | "rfq_vendors"> {
61
+ export interface INestedRFQ extends Omit<IRFQ, "items" | "approval_chain" | "rfq_vendor_groups" | "rfq_vendors" | "additional_vendors"> {
57
62
  }
58
63
  export interface IRFQItem {
59
64
  id: string;
@@ -7,6 +7,7 @@ var RFQ_INCLUDES;
7
7
  RFQ_INCLUDES["items"] = "items";
8
8
  RFQ_INCLUDES["rfq_vendors"] = "rfq_vendors";
9
9
  RFQ_INCLUDES["rfq_vendor_groups"] = "rfq_vendor_groups";
10
+ RFQ_INCLUDES["additional_vendors"] = "additional_vendors";
10
11
  })(RFQ_INCLUDES = exports.RFQ_INCLUDES || (exports.RFQ_INCLUDES = {}));
11
12
  var RFQ_STATUS;
12
13
  (function (RFQ_STATUS) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "5.2.3",
3
+ "version": "5.2.4",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.js",