@platform-modules/foreign-ministry 1.0.96 → 1.0.97
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/dist/data-source.js +2 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
- package/src/data-source.ts +2 -1
- package/src/index.ts +1 -0
package/dist/data-source.js
CHANGED
|
@@ -71,6 +71,7 @@ const WorkflowTaskNames_1 = require("./models/WorkflowTaskNames");
|
|
|
71
71
|
const WorkflowDefinitions_1 = require("./models/WorkflowDefinitions");
|
|
72
72
|
const WorkflowHierarchy_1 = require("./models/WorkflowHierarchy");
|
|
73
73
|
const importantLinksModel_1 = require("./models/importantLinksModel");
|
|
74
|
+
const DelegateSettingsModel_1 = require("./models/DelegateSettingsModel");
|
|
74
75
|
exports.AppDataSource = new typeorm_1.DataSource({
|
|
75
76
|
type: 'postgres',
|
|
76
77
|
host: process.env.DB_HOST || 'localhost',
|
|
@@ -147,5 +148,6 @@ exports.AppDataSource = new typeorm_1.DataSource({
|
|
|
147
148
|
WorkflowDefinitions_1.WorkflowDefinitions,
|
|
148
149
|
WorkflowHierarchy_1.WorkflowHierarchy,
|
|
149
150
|
importantLinksModel_1.ImportantLinks,
|
|
151
|
+
DelegateSettingsModel_1.DelegateSettings
|
|
150
152
|
],
|
|
151
153
|
});
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -80,3 +80,4 @@ __exportStar(require("./models/WorkflowTaskNames"), exports);
|
|
|
80
80
|
__exportStar(require("./models/WorkflowDefinitions"), exports);
|
|
81
81
|
__exportStar(require("./models/WorkflowHierarchy"), exports);
|
|
82
82
|
__exportStar(require("./models/importantLinksModel"), exports);
|
|
83
|
+
__exportStar(require("./models/DelegateSettingsModel"), exports);
|
package/package.json
CHANGED
package/src/data-source.ts
CHANGED
|
@@ -75,7 +75,7 @@ import { WorkflowTaskNames } from './models/WorkflowTaskNames';
|
|
|
75
75
|
import { WorkflowDefinitions } from './models/WorkflowDefinitions';
|
|
76
76
|
import { WorkflowHierarchy } from './models/WorkflowHierarchy';
|
|
77
77
|
import { ImportantLinks } from './models/importantLinksModel';
|
|
78
|
-
|
|
78
|
+
import { DelegateSettings } from './models/DelegateSettingsModel';
|
|
79
79
|
|
|
80
80
|
|
|
81
81
|
export const AppDataSource = new DataSource({
|
|
@@ -154,5 +154,6 @@ export const AppDataSource = new DataSource({
|
|
|
154
154
|
WorkflowDefinitions,
|
|
155
155
|
WorkflowHierarchy,
|
|
156
156
|
ImportantLinks,
|
|
157
|
+
DelegateSettings
|
|
157
158
|
],
|
|
158
159
|
});
|
package/src/index.ts
CHANGED