kcommons 6.4.14 → 6.4.16
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,10 +1,12 @@
|
|
|
1
1
|
import { INestedCompany } from "./company.typings";
|
|
2
2
|
import { INestedCompanyVendors } from "./companyVendors.typings";
|
|
3
3
|
import { INestedItem } from "./item.typings";
|
|
4
|
+
import { INestedVendor } from "./vendor.typings";
|
|
4
5
|
export declare enum COMPANY_VENDOR_ITEM_VERSION_INCLUDE {
|
|
5
6
|
company = "company",
|
|
6
7
|
item = "item",
|
|
7
|
-
company_vendor = "company_vendor"
|
|
8
|
+
company_vendor = "company_vendor",
|
|
9
|
+
vendor = "vendor"
|
|
8
10
|
}
|
|
9
11
|
export interface ICompanyItemVendorVersionFilters {
|
|
10
12
|
item_id?: string | null;
|
|
@@ -25,6 +27,7 @@ export interface ICompanyItemVendorVersion {
|
|
|
25
27
|
company: INestedCompany | null;
|
|
26
28
|
item: INestedItem | null;
|
|
27
29
|
company_vendor: INestedCompanyVendors | null;
|
|
30
|
+
vendor: INestedVendor | null;
|
|
28
31
|
}
|
|
29
|
-
export interface INestedCompanyItemVendorVersion extends Omit<ICompanyItemVendorVersion, "company" | "item" | "company_vendor"> {
|
|
32
|
+
export interface INestedCompanyItemVendorVersion extends Omit<ICompanyItemVendorVersion, "company" | "item" | "company_vendor" | "vendor"> {
|
|
30
33
|
}
|
|
@@ -6,4 +6,5 @@ var COMPANY_VENDOR_ITEM_VERSION_INCLUDE;
|
|
|
6
6
|
COMPANY_VENDOR_ITEM_VERSION_INCLUDE["company"] = "company";
|
|
7
7
|
COMPANY_VENDOR_ITEM_VERSION_INCLUDE["item"] = "item";
|
|
8
8
|
COMPANY_VENDOR_ITEM_VERSION_INCLUDE["company_vendor"] = "company_vendor";
|
|
9
|
+
COMPANY_VENDOR_ITEM_VERSION_INCLUDE["vendor"] = "vendor";
|
|
9
10
|
})(COMPANY_VENDOR_ITEM_VERSION_INCLUDE || (exports.COMPANY_VENDOR_ITEM_VERSION_INCLUDE = COMPANY_VENDOR_ITEM_VERSION_INCLUDE = {}));
|
|
@@ -7,6 +7,7 @@ import { INestedRFQ } from "./rfq.typings";
|
|
|
7
7
|
import { IAddress } from "./common/address.typings";
|
|
8
8
|
import { INestedVendorProxy } from "./vendorProxy.typints";
|
|
9
9
|
import { IEXtraFormAnswers } from "./settings/form/extraFormAns.typings";
|
|
10
|
+
import { INestedCompanyItemVendorVersion } from "./companyItemVendorVersion.typings";
|
|
10
11
|
export interface IVendor extends IAddress {
|
|
11
12
|
id: string;
|
|
12
13
|
gst_no?: string | null;
|
|
@@ -46,8 +47,9 @@ export interface IVendor extends IAddress {
|
|
|
46
47
|
vendor_proxy: INestedVendorProxy | null;
|
|
47
48
|
extra_que_answers: IEXtraFormAnswers[] | null;
|
|
48
49
|
pos: INestedPo[] | null;
|
|
50
|
+
company_item_versions: INestedCompanyItemVendorVersion[] | null;
|
|
49
51
|
}
|
|
50
|
-
export interface INestedVendor extends Omit<IVendor, "quotes" | "associated_companies" | "negotiations" | "as_additional_in_rfqs" | "vendor_notifications" | "vendor_proxy" | "extra_que_answers" | "pos"> {
|
|
52
|
+
export interface INestedVendor extends Omit<IVendor, "quotes" | "associated_companies" | "negotiations" | "as_additional_in_rfqs" | "vendor_notifications" | "vendor_proxy" | "extra_que_answers" | "pos" | "company_item_versions"> {
|
|
51
53
|
}
|
|
52
54
|
export declare enum VENDOR_INCLUDE {
|
|
53
55
|
quotes = "quotes",
|
|
@@ -57,7 +59,8 @@ export declare enum VENDOR_INCLUDE {
|
|
|
57
59
|
vendor_notifications = "vendor_notifications",
|
|
58
60
|
vendor_proxy = "vendor_proxy",
|
|
59
61
|
extra_que_answers = "extra_que_answers",
|
|
60
|
-
pos = "pos"
|
|
62
|
+
pos = "pos",
|
|
63
|
+
company_item_versions = "company_item_versions"
|
|
61
64
|
}
|
|
62
65
|
export interface IVENDOR_TOKEN_PAYLOAD {
|
|
63
66
|
id: string;
|
|
@@ -11,6 +11,7 @@ var VENDOR_INCLUDE;
|
|
|
11
11
|
VENDOR_INCLUDE["vendor_proxy"] = "vendor_proxy";
|
|
12
12
|
VENDOR_INCLUDE["extra_que_answers"] = "extra_que_answers";
|
|
13
13
|
VENDOR_INCLUDE["pos"] = "pos";
|
|
14
|
+
VENDOR_INCLUDE["company_item_versions"] = "company_item_versions";
|
|
14
15
|
})(VENDOR_INCLUDE || (exports.VENDOR_INCLUDE = VENDOR_INCLUDE = {}));
|
|
15
16
|
// for GST-Core activities Types
|
|
16
17
|
var VENDOR_TYPE;
|