@kipicore/dbcore 1.1.85 → 1.1.86

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.
@@ -19,7 +19,7 @@ export interface IDashboardManagementAttributes extends IDefaultAttributes, Docu
19
19
  userId: string;
20
20
  instituteId: string;
21
21
  userType: USER_TYPES;
22
- moduleList: IModuleList[];
22
+ webModuleList: IModuleList[];
23
23
  mobileModuleList: IModuleList[];
24
24
  webQuickLinkList: IQuickLinkList[];
25
25
  mobileQuickLinkList: IQuickLinkList[];
@@ -101,6 +101,10 @@ const DashboardManagementModelSchema = new mongoose_1.Schema({
101
101
  type: [DashboardManagementSchema],
102
102
  required: false,
103
103
  },
104
+ webModuleList: {
105
+ type: [DashboardManagementSchema],
106
+ required: false,
107
+ },
104
108
  mobileQuickLinkList: {
105
109
  type: [quickLinkListSchema],
106
110
  required: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kipicore/dbcore",
3
- "version": "1.1.85",
3
+ "version": "1.1.86",
4
4
  "description": "Reusable DB core package with Postgres, MongoDB, models, services, interfaces, and types",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",