kcommons 5.25.21 → 5.25.23
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/index.d.ts
CHANGED
|
@@ -38,6 +38,8 @@ export * from "./typings/vendorItemCategories.typings";
|
|
|
38
38
|
export * from "./typings/vendorDiscovery.typings";
|
|
39
39
|
export * from "./typings/settings/form/extraFormQues.typings";
|
|
40
40
|
export * from "./typings/settings/form/extraFormAns.typings";
|
|
41
|
+
export * from "./typings/extraCoreRelatedQuestions.typings";
|
|
42
|
+
export * from "./typings/extraCoreRelatedQuestionsForCompany.typing";
|
|
41
43
|
export * from "./constants/permission.constants";
|
|
42
44
|
export * from "./constants/entityTypes.constants";
|
|
43
45
|
export * from "./constants/documentStatus.typings";
|
package/build/index.js
CHANGED
|
@@ -55,6 +55,8 @@ __exportStar(require("./typings/vendorItemCategories.typings"), exports);
|
|
|
55
55
|
__exportStar(require("./typings/vendorDiscovery.typings"), exports);
|
|
56
56
|
__exportStar(require("./typings/settings/form/extraFormQues.typings"), exports);
|
|
57
57
|
__exportStar(require("./typings/settings/form/extraFormAns.typings"), exports);
|
|
58
|
+
__exportStar(require("./typings/extraCoreRelatedQuestions.typings"), exports);
|
|
59
|
+
__exportStar(require("./typings/extraCoreRelatedQuestionsForCompany.typing"), exports);
|
|
58
60
|
// Constants
|
|
59
61
|
__exportStar(require("./constants/permission.constants"), exports);
|
|
60
62
|
__exportStar(require("./constants/entityTypes.constants"), exports);
|
|
@@ -1,9 +1,14 @@
|
|
|
1
|
+
import { INestedExtraCoreRelatedQuestionsForCompanyEntiy } from "./extraCoreRelatedQuestionsForCompany.typing";
|
|
2
|
+
export declare enum EXTRA_CORE_RELATED_QUESTION_INCLUDE {
|
|
3
|
+
referencing_company_questions = "referencing_company_questions"
|
|
4
|
+
}
|
|
1
5
|
export interface IExtraCoreRelatedQuestions {
|
|
2
6
|
id: string;
|
|
3
7
|
que_text: string;
|
|
4
8
|
form_type: string;
|
|
5
9
|
created_at: string;
|
|
6
10
|
updated_at: string;
|
|
11
|
+
referencing_company_questions: INestedExtraCoreRelatedQuestionsForCompanyEntiy[] | null;
|
|
7
12
|
}
|
|
8
|
-
export interface INestedCoreRelatedQuestion extends IExtraCoreRelatedQuestions {
|
|
13
|
+
export interface INestedCoreRelatedQuestion extends Omit<IExtraCoreRelatedQuestions, "referencing_company_questions"> {
|
|
9
14
|
}
|
|
@@ -1,2 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.EXTRA_CORE_RELATED_QUESTION_INCLUDE = void 0;
|
|
4
|
+
var EXTRA_CORE_RELATED_QUESTION_INCLUDE;
|
|
5
|
+
(function (EXTRA_CORE_RELATED_QUESTION_INCLUDE) {
|
|
6
|
+
EXTRA_CORE_RELATED_QUESTION_INCLUDE["referencing_company_questions"] = "referencing_company_questions";
|
|
7
|
+
})(EXTRA_CORE_RELATED_QUESTION_INCLUDE || (exports.EXTRA_CORE_RELATED_QUESTION_INCLUDE = EXTRA_CORE_RELATED_QUESTION_INCLUDE = {}));
|