tango-api-schema 2.1.43 → 2.1.44
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/index.js +17 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -47,6 +47,14 @@ import empDetectionOutputModel from "./schema/empDetectionOutput.model.js";
|
|
|
47
47
|
import auditUsersModel from "./schema/auditUsers.model.js";
|
|
48
48
|
import clusterModel from "./schema/cluster.model.js";
|
|
49
49
|
import teamsModel from "./schema/teams.model.js";
|
|
50
|
+
import checklistassignconfig from "./schema/checklistassignconfig.js";
|
|
51
|
+
import checklistconfig from "./schema/checklistconfig.js";
|
|
52
|
+
import checklistlog from "./schema/checklistlog.js";
|
|
53
|
+
import checklistquestionconfig from "./schema/checklistquestionconfig.js";
|
|
54
|
+
import processedchecklist from "./schema/processedchecklist.js";
|
|
55
|
+
import processedchecklistconfig from "./schema/processedchecklistconfig.js";
|
|
56
|
+
import processeddetection from "./schema/processeddetection.js";
|
|
57
|
+
import domain from "./schema/domain.js";
|
|
50
58
|
|
|
51
59
|
|
|
52
60
|
|
|
@@ -100,5 +108,13 @@ export default {
|
|
|
100
108
|
empDetectionOutputModel,
|
|
101
109
|
auditUsersModel,
|
|
102
110
|
clusterModel,
|
|
103
|
-
teamsModel
|
|
111
|
+
teamsModel,
|
|
112
|
+
checklistassignconfig,
|
|
113
|
+
checklistconfig,
|
|
114
|
+
checklistlog,
|
|
115
|
+
checklistquestionconfig,
|
|
116
|
+
processedchecklist,
|
|
117
|
+
processedchecklistconfig,
|
|
118
|
+
processeddetection,
|
|
119
|
+
domain,
|
|
104
120
|
};
|