kcommons 5.22.0 → 5.22.2
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.
- package/build/typings/comparative.typings.d.ts +1 -0
- package/build/typings/docItems.typings.d.ts +3 -0
- package/build/typings/docItems.typings.js +1 -0
- package/build/typings/item.typings.d.ts +1 -0
- package/build/typings/rfq.typings.d.ts +6 -0
- package/build/typings/rfq.typings.js +7 -1
- package/package.json +1 -1
|
@@ -7,6 +7,7 @@ export interface IDocItem {
|
|
|
7
7
|
item_name: string;
|
|
8
8
|
quantity: number;
|
|
9
9
|
uom: string;
|
|
10
|
+
tolerence: string | null;
|
|
10
11
|
item_description?: string | null;
|
|
11
12
|
attachment_link?: string | null;
|
|
12
13
|
is_deleted?: boolean | null;
|
|
@@ -24,6 +25,7 @@ export declare class DocItem implements IDocItem {
|
|
|
24
25
|
item_name: string;
|
|
25
26
|
quantity: number;
|
|
26
27
|
uom: string;
|
|
28
|
+
tolerence: string | null;
|
|
27
29
|
item_description?: string | null;
|
|
28
30
|
attachment_link?: string | null;
|
|
29
31
|
is_deleted?: boolean | null;
|
|
@@ -38,6 +40,7 @@ export interface ITaxRelatedItemInputs {
|
|
|
38
40
|
code_sku: string;
|
|
39
41
|
item_description?: string | null;
|
|
40
42
|
uom: string;
|
|
43
|
+
tolerence: string | null;
|
|
41
44
|
provided_quantity?: number | null;
|
|
42
45
|
per_unit_rate?: number | null;
|
|
43
46
|
discount_value?: number | null;
|
|
@@ -18,6 +18,11 @@ export interface IRFQFilters {
|
|
|
18
18
|
include?: RFQ_INCLUDES[];
|
|
19
19
|
name?: string;
|
|
20
20
|
}
|
|
21
|
+
export declare enum RFQVendorType {
|
|
22
|
+
DIRECT = "DIRECT",
|
|
23
|
+
VENDOR_GROUP = "VENDOR_GROUP",
|
|
24
|
+
ADDITIONAL_VENDORS = "ADDITIONAL_VENDORS"
|
|
25
|
+
}
|
|
21
26
|
export interface IRFQFiltersWithPagination extends IPaginationFilters, IRFQFilters {
|
|
22
27
|
}
|
|
23
28
|
export declare enum RFQ_INCLUDES {
|
|
@@ -119,6 +124,7 @@ export interface IRFQItem {
|
|
|
119
124
|
item_name: string;
|
|
120
125
|
uom: string;
|
|
121
126
|
code_sku: string;
|
|
127
|
+
tolerence: string | null;
|
|
122
128
|
quantity: number;
|
|
123
129
|
created_by_user_id: string;
|
|
124
130
|
item_description?: string | null;
|
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.RFQ_BOM_INCLUDE = exports.RFQ_ITEM_INCLUDE = exports.BIDDING_TYPES = exports.RFQ_ITEM_TYPE = exports.RFQ_STATUS = exports.RFQ_INCLUDES = void 0;
|
|
3
|
+
exports.RFQ_BOM_INCLUDE = exports.RFQ_ITEM_INCLUDE = exports.BIDDING_TYPES = exports.RFQ_ITEM_TYPE = exports.RFQ_STATUS = exports.RFQ_INCLUDES = exports.RFQVendorType = void 0;
|
|
4
|
+
var RFQVendorType;
|
|
5
|
+
(function (RFQVendorType) {
|
|
6
|
+
RFQVendorType["DIRECT"] = "DIRECT";
|
|
7
|
+
RFQVendorType["VENDOR_GROUP"] = "VENDOR_GROUP";
|
|
8
|
+
RFQVendorType["ADDITIONAL_VENDORS"] = "ADDITIONAL_VENDORS";
|
|
9
|
+
})(RFQVendorType || (exports.RFQVendorType = RFQVendorType = {}));
|
|
4
10
|
var RFQ_INCLUDES;
|
|
5
11
|
(function (RFQ_INCLUDES) {
|
|
6
12
|
RFQ_INCLUDES["company"] = "company";
|