@kipicore/dbcore 1.1.303 → 1.1.305

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.
@@ -17,6 +17,17 @@ const AppointmentModule = {
17
17
  { name: 'Delete', code: 'APPOINTMENT.APPOINTMENTMANAGEMENT.DELETE', appType: [appTypeEnum.SCHOOL_APP] },
18
18
  ],
19
19
  },
20
+ {
21
+ name: 'Appointment Desk Management',
22
+ code: 'APPOINTMENT.APPOINTMENTMANAGEMENTDESK',
23
+ appType: [appTypeEnum.SCHOOL_APP],
24
+ actions: [
25
+ { name: 'Add', code: 'APPOINTMENT.APPOINTMENTMANAGEMENTDESK.ADD', appType: [appTypeEnum.SCHOOL_APP] },
26
+ { name: 'Update', code: 'APPOINTMENT.APPOINTMENTMANAGEMENTDESK.UPDATE', appType: [appTypeEnum.SCHOOL_APP] },
27
+ { name: 'View', code: 'APPOINTMENT.APPOINTMENTMANAGEMENTDESK.VIEW', appType: [appTypeEnum.SCHOOL_APP] },
28
+ { name: 'Delete', code: 'APPOINTMENT.APPOINTMENTMANAGEMENTDESK.DELETE', appType: [appTypeEnum.SCHOOL_APP] },
29
+ ],
30
+ },
20
31
  ],
21
32
  };
22
33
  module.exports = AppointmentModule;
@@ -1,6 +1,6 @@
1
1
  import { Document } from 'mongoose';
2
2
  import { IDefaultAttributes } from './commonInterface';
3
- import { ADMISSION_TYPE, INQUIRY_REFERRED_BY, INQUIRY_STATUS, USER_TYPES } from '../constants/app';
3
+ import { ADMISSION_TYPE, FEE_COLLECTION_TYPE, INQUIRY_REFERRED_BY, INQUIRY_STATUS, USER_TYPES } from '../constants/app';
4
4
  import { IAddressSchema } from './userDetailsInterface';
5
5
  export interface IBasicInformation {
6
6
  firstName: string;
@@ -17,6 +17,7 @@ export interface IAcademicInformation {
17
17
  entities: string[];
18
18
  admissionType?: ADMISSION_TYPE;
19
19
  batchType: string;
20
+ studentFeeType?: FEE_COLLECTION_TYPE;
20
21
  }
21
22
  export interface ILastSchool {
22
23
  name: string;
@@ -58,6 +58,7 @@ const AcademicInformationSchema = new mongoose_1.Schema({
58
58
  entities: { type: [String], required: true },
59
59
  batchType: { type: String, required: false },
60
60
  admissionType: { type: String, required: false },
61
+ studentFeeType: { type: String, required: false },
61
62
  }, { _id: false });
62
63
  const LastSchoolSchema = new mongoose_1.Schema({
63
64
  name: { type: String, required: false },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kipicore/dbcore",
3
- "version": "1.1.303",
3
+ "version": "1.1.305",
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",