@platform-modules/foreign-ministry 1.0.101 → 1.0.102
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 +3 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
- package/src/data-source.ts +3 -1
- package/src/index.ts +1 -0
package/dist/data-source.js
CHANGED
|
@@ -66,6 +66,7 @@ const FinancialChatsModel_1 = require("./models/FinancialChatsModel");
|
|
|
66
66
|
const FinancialWorkFlowModel_1 = require("./models/FinancialWorkFlowModel");
|
|
67
67
|
const FinancialAttachmentsModel_1 = require("./models/FinancialAttachmentsModel");
|
|
68
68
|
const RequestTypeMasterModel_1 = require("./models/RequestTypeMasterModel");
|
|
69
|
+
const AllowanceTypesModel_1 = require("./models/AllowanceTypesModel");
|
|
69
70
|
const WorkflowTask_1 = require("./models/WorkflowTask");
|
|
70
71
|
const WorkflowTaskNames_1 = require("./models/WorkflowTaskNames");
|
|
71
72
|
const WorkflowDefinitions_1 = require("./models/WorkflowDefinitions");
|
|
@@ -148,6 +149,7 @@ exports.AppDataSource = new typeorm_1.DataSource({
|
|
|
148
149
|
WorkflowDefinitions_1.WorkflowDefinitions,
|
|
149
150
|
WorkflowHierarchy_1.WorkflowHierarchy,
|
|
150
151
|
importantLinksModel_1.ImportantLinks,
|
|
151
|
-
DelegateSettingsModel_1.DelegateSettings
|
|
152
|
+
DelegateSettingsModel_1.DelegateSettings,
|
|
153
|
+
AllowanceTypesModel_1.AllowanceTypes
|
|
152
154
|
],
|
|
153
155
|
});
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -81,3 +81,4 @@ __exportStar(require("./models/WorkflowDefinitions"), exports);
|
|
|
81
81
|
__exportStar(require("./models/WorkflowHierarchy"), exports);
|
|
82
82
|
__exportStar(require("./models/importantLinksModel"), exports);
|
|
83
83
|
__exportStar(require("./models/DelegateSettingsModel"), exports);
|
|
84
|
+
__exportStar(require("./models/AllowanceTypesModel"), exports);
|
package/package.json
CHANGED
package/src/data-source.ts
CHANGED
|
@@ -68,6 +68,7 @@ import { FinancialChats } from './models/FinancialChatsModel';
|
|
|
68
68
|
import { FinancialWorkFlow } from './models/FinancialWorkFlowModel';
|
|
69
69
|
import { FinancialAttachments } from './models/FinancialAttachmentsModel';
|
|
70
70
|
import { RequestTypeMaster } from './models/RequestTypeMasterModel';
|
|
71
|
+
import { AllowanceTypes } from './models/AllowanceTypesModel';
|
|
71
72
|
|
|
72
73
|
|
|
73
74
|
import { WorkflowTask } from './models/WorkflowTask';
|
|
@@ -154,6 +155,7 @@ export const AppDataSource = new DataSource({
|
|
|
154
155
|
WorkflowDefinitions,
|
|
155
156
|
WorkflowHierarchy,
|
|
156
157
|
ImportantLinks,
|
|
157
|
-
DelegateSettings
|
|
158
|
+
DelegateSettings,
|
|
159
|
+
AllowanceTypes
|
|
158
160
|
],
|
|
159
161
|
});
|
package/src/index.ts
CHANGED