kcommons 4.3.0 → 4.4.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.
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PO_INCLUDE = void 0;
|
|
4
|
+
var PO_INCLUDE;
|
|
5
|
+
(function (PO_INCLUDE) {
|
|
6
|
+
PO_INCLUDE["approval_chain"] = "approval_chain";
|
|
7
|
+
PO_INCLUDE["taxes"] = "taxes";
|
|
8
|
+
})(PO_INCLUDE = exports.PO_INCLUDE || (exports.PO_INCLUDE = {}));
|
|
@@ -38,6 +38,8 @@ export interface IQuote {
|
|
|
38
38
|
company?: INestedCompany | null;
|
|
39
39
|
quote_items?: INestedQuoteItems[] | null;
|
|
40
40
|
}
|
|
41
|
+
export interface INestedQuote extends Omit<IQuote, "parent_rfq" | "vendor" | "company" | "quote_items"> {
|
|
42
|
+
}
|
|
41
43
|
export interface IQuoteInputs extends Omit<IQuote, "id" | "quoted_at" | "is_deleted" | "deleted_at" | "created_at" | "updated_at"> {
|
|
42
44
|
}
|
|
43
45
|
export interface IQuoteItems {
|
|
@@ -78,6 +78,8 @@ export interface IRFQItem {
|
|
|
78
78
|
created_at?: string | null;
|
|
79
79
|
updated_at?: string | null;
|
|
80
80
|
}
|
|
81
|
+
export interface INestedRFQItem extends IRFQItem {
|
|
82
|
+
}
|
|
81
83
|
export interface IRFQItemInputs extends Omit<IRFQItem, "created_by_user_id" | "created_at" | "parent_rfq_id"> {
|
|
82
84
|
}
|
|
83
85
|
export declare class CreateRFQItemWrapper implements IRFQItemInputs {
|