tango-api-schema 2.1.44 → 2.1.45
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 +16 -16
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -47,14 +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
|
|
51
|
-
import
|
|
52
|
-
import
|
|
53
|
-
import
|
|
54
|
-
import
|
|
55
|
-
import
|
|
56
|
-
import
|
|
57
|
-
import
|
|
50
|
+
import checklistassignconfigModel from "./schema/checklistassignconfig.js";
|
|
51
|
+
import checklistconfigModel from "./schema/checklistconfig.js";
|
|
52
|
+
import checklistlogModel from "./schema/checklistlog.js";
|
|
53
|
+
import checklistquestionconfigModel from "./schema/checklistquestionconfig.js";
|
|
54
|
+
import processedchecklistModel from "./schema/processedchecklist.js";
|
|
55
|
+
import processedchecklistconfigModel from "./schema/processedchecklistconfig.js";
|
|
56
|
+
import processeddetectionModel from "./schema/processeddetection.js";
|
|
57
|
+
import domainModel from "./schema/domain.js";
|
|
58
58
|
|
|
59
59
|
|
|
60
60
|
|
|
@@ -109,12 +109,12 @@ export default {
|
|
|
109
109
|
auditUsersModel,
|
|
110
110
|
clusterModel,
|
|
111
111
|
teamsModel,
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
112
|
+
checklistassignconfigModel,
|
|
113
|
+
checklistconfigModel,
|
|
114
|
+
checklistlogModel,
|
|
115
|
+
checklistquestionconfigModel,
|
|
116
|
+
processedchecklistModel,
|
|
117
|
+
processedchecklistconfigModel,
|
|
118
|
+
processeddetectionModel,
|
|
119
|
+
domainModel,
|
|
120
120
|
};
|