kcommons 18.9.12 → 18.9.13
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.
|
@@ -132,10 +132,12 @@ export declare enum SUPPLIER_INVOICE_MARKED_AS_INVALID_REASONS {
|
|
|
132
132
|
export interface ISupplierInvoiceMetafields {
|
|
133
133
|
parent_gi_created_by_user: INestedUser | null;
|
|
134
134
|
vendor_contact_info: IVerndorDataForSupplierInvoice | null;
|
|
135
|
+
associated_po_items: INestedPOItem[] | null;
|
|
135
136
|
}
|
|
136
137
|
export declare enum SUPPLIER_INVOICE_METFIELD_INCLUDE {
|
|
137
138
|
parent_gi_created_by_user = "parent_gi_created_by_user",
|
|
138
|
-
vendor_contact_info = "vendor_contact_info"
|
|
139
|
+
vendor_contact_info = "vendor_contact_info",
|
|
140
|
+
associated_po_items = "associated_po_items"
|
|
139
141
|
}
|
|
140
142
|
export interface IVerndorDataForSupplierInvoice {
|
|
141
143
|
vendor_trade_name: string | null;
|
|
@@ -42,4 +42,5 @@ var SUPPLIER_INVOICE_METFIELD_INCLUDE;
|
|
|
42
42
|
(function (SUPPLIER_INVOICE_METFIELD_INCLUDE) {
|
|
43
43
|
SUPPLIER_INVOICE_METFIELD_INCLUDE["parent_gi_created_by_user"] = "parent_gi_created_by_user";
|
|
44
44
|
SUPPLIER_INVOICE_METFIELD_INCLUDE["vendor_contact_info"] = "vendor_contact_info";
|
|
45
|
+
SUPPLIER_INVOICE_METFIELD_INCLUDE["associated_po_items"] = "associated_po_items";
|
|
45
46
|
})(SUPPLIER_INVOICE_METFIELD_INCLUDE || (exports.SUPPLIER_INVOICE_METFIELD_INCLUDE = SUPPLIER_INVOICE_METFIELD_INCLUDE = {}));
|