kcommons 5.24.16 → 5.24.17
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.
|
@@ -60,7 +60,8 @@ export declare enum COMPANY_INCLUDE {
|
|
|
60
60
|
company_comparatives = "company_comparatives",
|
|
61
61
|
company_comparative_items = "company_comparative_items",
|
|
62
62
|
company_notifications = "company_notifications",
|
|
63
|
-
company_proxy = "company_proxy"
|
|
63
|
+
company_proxy = "company_proxy",
|
|
64
|
+
extra_questions = "extra_questions"
|
|
64
65
|
}
|
|
65
66
|
export interface ICompany extends IAddress {
|
|
66
67
|
id: string;
|
|
@@ -119,6 +120,7 @@ export interface ICompany extends IAddress {
|
|
|
119
120
|
company_comparative_items: INestedComparativeItem[] | null;
|
|
120
121
|
company_notifications: INestedNotification[] | null;
|
|
121
122
|
company_proxy: INestedCompanyProxy | null;
|
|
123
|
+
extra_questions: null;
|
|
122
124
|
}
|
|
123
|
-
export interface INestedCompany extends Omit<ICompany, "associated_purchase_locations" | "associated_vendors" | "associated_permissions" | "associated_roles" | "approval_configs" | "subdepartments" | "subcategories" | "categories" | "items" | "offices" | "stores" | "employees" | "departments" | "vendor_groups" | "company_indents" | "indent_items" | "company_mis" | "mi_items" | "company_prs" | "pr_items" | "company_rfqs" | "company_quotes" | "entity_approval_chain_entries" | "company_negotiations" | "company_pos" | "company_grns" | "company_grns_items" | "company_mrns" | "company_mrns_items" | "company_boms" | "company_bom_items" | "company_comparatives" | "company_comparative_items" | "company_notifications" | "company_proxy"> {
|
|
125
|
+
export interface INestedCompany extends Omit<ICompany, "associated_purchase_locations" | "associated_vendors" | "associated_permissions" | "associated_roles" | "approval_configs" | "subdepartments" | "subcategories" | "categories" | "items" | "offices" | "stores" | "employees" | "departments" | "vendor_groups" | "company_indents" | "indent_items" | "company_mis" | "mi_items" | "company_prs" | "pr_items" | "company_rfqs" | "company_quotes" | "entity_approval_chain_entries" | "company_negotiations" | "company_pos" | "company_grns" | "company_grns_items" | "company_mrns" | "company_mrns_items" | "company_boms" | "company_bom_items" | "company_comparatives" | "company_comparative_items" | "company_notifications" | "company_proxy" | "extra_questions"> {
|
|
124
126
|
}
|
|
@@ -38,4 +38,5 @@ var COMPANY_INCLUDE;
|
|
|
38
38
|
COMPANY_INCLUDE["company_comparative_items"] = "company_comparative_items";
|
|
39
39
|
COMPANY_INCLUDE["company_notifications"] = "company_notifications";
|
|
40
40
|
COMPANY_INCLUDE["company_proxy"] = "company_proxy";
|
|
41
|
+
COMPANY_INCLUDE["extra_questions"] = "extra_questions";
|
|
41
42
|
})(COMPANY_INCLUDE || (exports.COMPANY_INCLUDE = COMPANY_INCLUDE = {}));
|
|
@@ -1,3 +1,11 @@
|
|
|
1
1
|
export declare enum CONFIG_FORM_TYPES {
|
|
2
2
|
VENDOR_ONBOARDING = "vendor-onboarding"
|
|
3
3
|
}
|
|
4
|
+
export declare enum ExtraFormQuestionInclude {
|
|
5
|
+
company = "company",
|
|
6
|
+
created_by = "created_by",
|
|
7
|
+
updated_by = "updated_by",
|
|
8
|
+
select_opts = "select_opts"
|
|
9
|
+
}
|
|
10
|
+
export interface IExtraFormQuestions {
|
|
11
|
+
}
|
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CONFIG_FORM_TYPES = void 0;
|
|
3
|
+
exports.ExtraFormQuestionInclude = exports.CONFIG_FORM_TYPES = void 0;
|
|
4
4
|
var CONFIG_FORM_TYPES;
|
|
5
5
|
(function (CONFIG_FORM_TYPES) {
|
|
6
6
|
CONFIG_FORM_TYPES["VENDOR_ONBOARDING"] = "vendor-onboarding";
|
|
7
7
|
})(CONFIG_FORM_TYPES || (exports.CONFIG_FORM_TYPES = CONFIG_FORM_TYPES = {}));
|
|
8
|
+
var ExtraFormQuestionInclude;
|
|
9
|
+
(function (ExtraFormQuestionInclude) {
|
|
10
|
+
ExtraFormQuestionInclude["company"] = "company";
|
|
11
|
+
ExtraFormQuestionInclude["created_by"] = "created_by";
|
|
12
|
+
ExtraFormQuestionInclude["updated_by"] = "updated_by";
|
|
13
|
+
ExtraFormQuestionInclude["select_opts"] = "select_opts";
|
|
14
|
+
})(ExtraFormQuestionInclude || (exports.ExtraFormQuestionInclude = ExtraFormQuestionInclude = {}));
|