kcommons 18.0.14 → 18.0.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.
- package/build/typings/asn.typings.d.ts +10 -1
- package/build/typings/asn.typings.js +1 -0
- package/build/typings/company/masters/po.typings.d.ts +1 -0
- package/build/typings/company/masters/ves.typings.d.ts +10 -1
- package/build/typings/company/masters/ves.typings.js +1 -0
- package/build/typings/grn.typings.d.ts +10 -1
- package/build/typings/grn.typings.js +1 -0
- package/build/typings/mrn.typings.d.ts +10 -1
- package/build/typings/mrn.typings.js +1 -0
- package/package.json +1 -1
|
@@ -322,7 +322,16 @@ export declare enum ASN_SORTING_ORDER {
|
|
|
322
322
|
}
|
|
323
323
|
export interface IASNMetafields {
|
|
324
324
|
items_data: INestedItem[] | null;
|
|
325
|
+
vendor_quote_item_custom_uom_data: IASNVendorQuoteItemCustomUOM[] | null;
|
|
325
326
|
}
|
|
326
327
|
export declare enum ASN_METAFIELDS_INCLUDE {
|
|
327
|
-
items_data = "items_data"
|
|
328
|
+
items_data = "items_data",
|
|
329
|
+
vendor_quote_item_custom_uom_data = "vendor_quote_item_custom_uom_data"
|
|
330
|
+
}
|
|
331
|
+
export interface IASNVendorQuoteItemCustomUOM {
|
|
332
|
+
quote_item_id: string | null;
|
|
333
|
+
vendor_quote_item_name: string | null;
|
|
334
|
+
custom_uom_name: string | null;
|
|
335
|
+
custom_uom_abbrevation: string | null;
|
|
336
|
+
conversion_factor: number | null;
|
|
328
337
|
}
|
|
@@ -153,4 +153,5 @@ var ASN_SORTING_ORDER;
|
|
|
153
153
|
var ASN_METAFIELDS_INCLUDE;
|
|
154
154
|
(function (ASN_METAFIELDS_INCLUDE) {
|
|
155
155
|
ASN_METAFIELDS_INCLUDE["items_data"] = "items_data";
|
|
156
|
+
ASN_METAFIELDS_INCLUDE["vendor_quote_item_custom_uom_data"] = "vendor_quote_item_custom_uom_data";
|
|
156
157
|
})(ASN_METAFIELDS_INCLUDE || (exports.ASN_METAFIELDS_INCLUDE = ASN_METAFIELDS_INCLUDE = {}));
|
|
@@ -337,6 +337,7 @@ export interface IPOAssociatedVendorQuoteItemCustomUOM {
|
|
|
337
337
|
vendor_quote_item_id: string | null;
|
|
338
338
|
vendor_item_id: string | null;
|
|
339
339
|
quote_item_id: string | null;
|
|
340
|
+
vendor_quote_item_name: string | null;
|
|
340
341
|
custom_uom_name: string | null;
|
|
341
342
|
custom_uom_abbrevation: string | null;
|
|
342
343
|
conversion_factor: number | null;
|
|
@@ -118,11 +118,13 @@ export interface IFetchDocumentForVESByDocumentNoResponse {
|
|
|
118
118
|
}
|
|
119
119
|
export declare enum VES_METAFIELDS_INCLUDE {
|
|
120
120
|
vendor = "vendor",
|
|
121
|
-
items_data = "items_data"
|
|
121
|
+
items_data = "items_data",
|
|
122
|
+
vendor_quote_item_custom_uom_data = "vendor_quote_item_custom_uom_data"
|
|
122
123
|
}
|
|
123
124
|
export interface IVESMetafields {
|
|
124
125
|
vendor: INestedVendor | null;
|
|
125
126
|
items_data: INestedItem[] | null;
|
|
127
|
+
vendor_quote_item_custom_uom_data: IVESVendorQuoteItemCustomUOM[] | null;
|
|
126
128
|
}
|
|
127
129
|
/**
|
|
128
130
|
* @deprecated
|
|
@@ -137,3 +139,10 @@ export interface IOpenVESApprovalData {
|
|
|
137
139
|
vesData: IVES;
|
|
138
140
|
targetEntityApprovalChainEntry: IEntityApprovalChainEntry;
|
|
139
141
|
}
|
|
142
|
+
export interface IVESVendorQuoteItemCustomUOM {
|
|
143
|
+
quote_item_id: string | null;
|
|
144
|
+
vendor_quote_item_name: string | null;
|
|
145
|
+
custom_uom_name: string | null;
|
|
146
|
+
custom_uom_abbrevation: string | null;
|
|
147
|
+
conversion_factor: number | null;
|
|
148
|
+
}
|
|
@@ -49,4 +49,5 @@ var VES_METAFIELDS_INCLUDE;
|
|
|
49
49
|
(function (VES_METAFIELDS_INCLUDE) {
|
|
50
50
|
VES_METAFIELDS_INCLUDE["vendor"] = "vendor";
|
|
51
51
|
VES_METAFIELDS_INCLUDE["items_data"] = "items_data";
|
|
52
|
+
VES_METAFIELDS_INCLUDE["vendor_quote_item_custom_uom_data"] = "vendor_quote_item_custom_uom_data";
|
|
52
53
|
})(VES_METAFIELDS_INCLUDE || (exports.VES_METAFIELDS_INCLUDE = VES_METAFIELDS_INCLUDE = {}));
|
|
@@ -168,7 +168,16 @@ export interface IFetchParentDocumentForGRNResponse {
|
|
|
168
168
|
}
|
|
169
169
|
export interface IGRNMetafields {
|
|
170
170
|
items_data: INestedItem[] | null;
|
|
171
|
+
vendor_quote_item_custom_uom_data: IGRNVendorQuoteItemCustomUOM[] | null;
|
|
171
172
|
}
|
|
172
173
|
export declare enum GRN_METAFIELDS_INCLUDE {
|
|
173
|
-
items_data = "items_data"
|
|
174
|
+
items_data = "items_data",
|
|
175
|
+
vendor_quote_item_custom_uom_data = "vendor_quote_item_custom_uom_data"
|
|
176
|
+
}
|
|
177
|
+
export interface IGRNVendorQuoteItemCustomUOM {
|
|
178
|
+
quote_item_id: string | null;
|
|
179
|
+
vendor_quote_item_name: string | null;
|
|
180
|
+
custom_uom_name: string | null;
|
|
181
|
+
custom_uom_abbrevation: string | null;
|
|
182
|
+
conversion_factor: number | null;
|
|
174
183
|
}
|
|
@@ -65,4 +65,5 @@ var GRN_ITEM_INCLUDE;
|
|
|
65
65
|
var GRN_METAFIELDS_INCLUDE;
|
|
66
66
|
(function (GRN_METAFIELDS_INCLUDE) {
|
|
67
67
|
GRN_METAFIELDS_INCLUDE["items_data"] = "items_data";
|
|
68
|
+
GRN_METAFIELDS_INCLUDE["vendor_quote_item_custom_uom_data"] = "vendor_quote_item_custom_uom_data";
|
|
68
69
|
})(GRN_METAFIELDS_INCLUDE || (exports.GRN_METAFIELDS_INCLUDE = GRN_METAFIELDS_INCLUDE = {}));
|
|
@@ -162,9 +162,11 @@ export interface INestedMRNItem extends Omit<IMRNItem, "parent_mrn" | "company"
|
|
|
162
162
|
}
|
|
163
163
|
export interface IMRNMetafields {
|
|
164
164
|
items_data: INestedItem[] | null;
|
|
165
|
+
vendor_quote_item_custom_uom_data: IMRNVendorQuoteItemCustomUOM[] | null;
|
|
165
166
|
}
|
|
166
167
|
export declare enum MRN_METAFIELDS_INCLUDE {
|
|
167
|
-
items_data = "items_data"
|
|
168
|
+
items_data = "items_data",
|
|
169
|
+
vendor_quote_item_custom_uom_data = "vendor_quote_item_custom_uom_data"
|
|
168
170
|
}
|
|
169
171
|
export interface IMRNItemUpperboundData {
|
|
170
172
|
item_id: string;
|
|
@@ -180,3 +182,10 @@ export interface IResolveDisputedMRNInputs extends Pick<IMRNFilters, "include">
|
|
|
180
182
|
/** @description This field is required if the MRN Resolution for company is set to USER_DECIDED_RESOLUTION */
|
|
181
183
|
resolution_method: ALLOWED_DISPUTED_MRN_RESOLUTION_METHOD | null;
|
|
182
184
|
}
|
|
185
|
+
export interface IMRNVendorQuoteItemCustomUOM {
|
|
186
|
+
quote_item_id: string | null;
|
|
187
|
+
vendor_quote_item_name: string | null;
|
|
188
|
+
custom_uom_name: string | null;
|
|
189
|
+
custom_uom_abbrevation: string | null;
|
|
190
|
+
conversion_factor: number | null;
|
|
191
|
+
}
|
|
@@ -72,4 +72,5 @@ var MRN_ITEM_INCLUDE;
|
|
|
72
72
|
var MRN_METAFIELDS_INCLUDE;
|
|
73
73
|
(function (MRN_METAFIELDS_INCLUDE) {
|
|
74
74
|
MRN_METAFIELDS_INCLUDE["items_data"] = "items_data";
|
|
75
|
+
MRN_METAFIELDS_INCLUDE["vendor_quote_item_custom_uom_data"] = "vendor_quote_item_custom_uom_data";
|
|
75
76
|
})(MRN_METAFIELDS_INCLUDE || (exports.MRN_METAFIELDS_INCLUDE = MRN_METAFIELDS_INCLUDE = {}));
|