@kipicore/dbcore 1.1.579 → 1.1.580
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/types/studentFeeHistoryType.d.ts +15 -0
- package/dist/types/studentFeeTypeCollectionType.d.ts +13 -0
- package/dist/types/typeManagementType.d.ts +9 -0
- package/dist/types/userHasBatchType.d.ts +5 -0
- package/dist/types/userHasParentType.d.ts +8 -0
- package/dist/types/userHasRollNumberType.d.ts +11 -0
- package/dist/types/visitorBookType.d.ts +8 -1
- package/package.json +1 -1
|
@@ -1,3 +1,18 @@
|
|
|
1
1
|
import { Optional } from 'sequelize';
|
|
2
2
|
import { IStudentFeeHistoryModelAttributes } from '../interfaces/studentFeeHistoryInterface';
|
|
3
|
+
import { IAcademicCalendarModelAttributes, IBankAccountDetailsInterfaceModelAttributes, IBatchModelAttributes, IFeeType1ModelAttributes, IFileStorageAttributes, IInstituteAttributes, IInstituteEntityAttributes, IStudentFeeCollectionModelAttributes, IUserAttributes } from '../interfaces';
|
|
3
4
|
export type TStudentFeeHistoryModelCreationAttributes = Optional<IStudentFeeHistoryModelAttributes, 'id'>;
|
|
5
|
+
export type TStudentFeeHistoryCreationWithAssociation = IStudentFeeHistoryModelAttributes & {
|
|
6
|
+
feeHistoryCollection?: IStudentFeeCollectionModelAttributes;
|
|
7
|
+
studentFeeHistoryInvoice?: IFileStorageAttributes;
|
|
8
|
+
studentFeeHistoryAccount?: IBankAccountDetailsInterfaceModelAttributes;
|
|
9
|
+
studentFeeHistoryInstitute?: IInstituteAttributes;
|
|
10
|
+
studentFeeHistoryUser?: IUserAttributes;
|
|
11
|
+
studentFeeHistoryAcaCal?: IAcademicCalendarModelAttributes;
|
|
12
|
+
studentFeeHistoryFeeType?: IFeeType1ModelAttributes;
|
|
13
|
+
createdByUser?: IUserAttributes;
|
|
14
|
+
updatedByUser?: IUserAttributes;
|
|
15
|
+
deletedByUser?: IUserAttributes;
|
|
16
|
+
studentHistorySubject?: IInstituteEntityAttributes;
|
|
17
|
+
studentHistoryBatch?: IBatchModelAttributes;
|
|
18
|
+
};
|
|
@@ -1,3 +1,16 @@
|
|
|
1
1
|
import { Optional } from 'sequelize';
|
|
2
2
|
import { IStudentFeeTypeCollectionModelAttributes } from '../interfaces/studentFeeTypeCollectionInterface';
|
|
3
|
+
import { IAcademicCalendarModelAttributes, IBatchModelAttributes, IFeeType1ModelAttributes, IInstituteAttributes, IInstituteEntityAttributes, IStudentFeeCollectionModelAttributes, IUserAttributes } from '../interfaces';
|
|
3
4
|
export type TStudentFeeTypeCollectionModelCreationAttributes = Optional<IStudentFeeTypeCollectionModelAttributes, 'id'>;
|
|
5
|
+
export type TStudentFeeTypeCreationWithAssociation = IStudentFeeTypeCollectionModelAttributes & {
|
|
6
|
+
feeTypeCollection?: IStudentFeeCollectionModelAttributes;
|
|
7
|
+
feeTypeCollectionInstitute?: IInstituteAttributes;
|
|
8
|
+
feeTypeCollectionUser?: IUserAttributes;
|
|
9
|
+
feeTypeCollectionAcaCal?: IAcademicCalendarModelAttributes;
|
|
10
|
+
feeTypeCollectionSubject?: IInstituteEntityAttributes;
|
|
11
|
+
feeTypeCollectionBatch?: IBatchModelAttributes;
|
|
12
|
+
feeTypeCollectionFeeType?: IFeeType1ModelAttributes;
|
|
13
|
+
createdByUser?: IUserAttributes;
|
|
14
|
+
updatedByUser?: IUserAttributes;
|
|
15
|
+
deletedByUser?: IUserAttributes;
|
|
16
|
+
};
|
|
@@ -1,3 +1,12 @@
|
|
|
1
1
|
import { Optional } from 'sequelize';
|
|
2
2
|
import { ITypeManagementModelAttributes } from '../interfaces/typeManagementInterface';
|
|
3
|
+
import { IAcademicCalendarModelAttributes, IInstituteAttributes, IUserAttributes } from '../interfaces';
|
|
3
4
|
export type TTypeManagementModelCreationAttributes = Optional<ITypeManagementModelAttributes, 'id'>;
|
|
5
|
+
export type TTypeManagementWithAssociation = ITypeManagementModelAttributes & {
|
|
6
|
+
institute?: IInstituteAttributes;
|
|
7
|
+
typeManagementAcaCal?: IAcademicCalendarModelAttributes;
|
|
8
|
+
typeManagementParent?: ITypeManagementModelAttributes;
|
|
9
|
+
createdByUser?: IUserAttributes;
|
|
10
|
+
updatedByUser?: IUserAttributes;
|
|
11
|
+
deletedByUser?: IUserAttributes;
|
|
12
|
+
};
|
|
@@ -2,8 +2,13 @@ import { Optional } from 'sequelize';
|
|
|
2
2
|
import { IUserHasBatchModelAttributes } from '../interfaces/userHasBatchInterface';
|
|
3
3
|
import { IUserAttributes } from '../interfaces/userInterface';
|
|
4
4
|
import { IBatchModelAttributes } from '../interfaces/batchInterface';
|
|
5
|
+
import { IAcademicCalendarModelAttributes } from '../interfaces';
|
|
5
6
|
export type TUserHasBatchModelCreationAttributes = Optional<IUserHasBatchModelAttributes, 'id'>;
|
|
6
7
|
export type TUserHasBatchModelAttributesWithassociate = IUserHasBatchModelAttributes & {
|
|
7
8
|
user?: IUserAttributes;
|
|
8
9
|
batch?: IBatchModelAttributes;
|
|
10
|
+
userHBAcademicCal?: IAcademicCalendarModelAttributes;
|
|
11
|
+
createdByUser?: IUserAttributes;
|
|
12
|
+
updatedByUser?: IUserAttributes;
|
|
13
|
+
deletedByUser?: IUserAttributes;
|
|
9
14
|
};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Optional } from 'sequelize';
|
|
2
2
|
import { IUserHasParentAttributes } from '../interfaces/userHasParentInterface';
|
|
3
|
+
import { IUserAttributes } from '../interfaces';
|
|
3
4
|
export type TUserHasParentCreationAttributes = Optional<IUserHasParentAttributes, 'id'>;
|
|
4
5
|
export type TCreateParentUserType = {
|
|
5
6
|
id: string;
|
|
@@ -8,3 +9,10 @@ export type TCreateParentUserType = {
|
|
|
8
9
|
export type TCreateParentType = IUserHasParentAttributes & {
|
|
9
10
|
users: TCreateParentUserType[];
|
|
10
11
|
};
|
|
12
|
+
export type TUserHasParentWithAssociation = IUserHasParentAttributes & {
|
|
13
|
+
user?: IUserAttributes;
|
|
14
|
+
parent?: IUserAttributes;
|
|
15
|
+
createdByUser?: IUserAttributes;
|
|
16
|
+
updatedByUser?: IUserAttributes;
|
|
17
|
+
deletedByUser?: IUserAttributes;
|
|
18
|
+
};
|
|
@@ -1,3 +1,14 @@
|
|
|
1
1
|
import { Optional } from 'sequelize';
|
|
2
2
|
import { IUserHasRollNumberModelAttributes } from '../interfaces/userHasRollNumberInterface';
|
|
3
|
+
import { IAcademicCalendarModelAttributes, IBatchModelAttributes, IInstituteAttributes, IUserAttributes } from '../interfaces';
|
|
3
4
|
export type TUserHasRollNumberModelCreationAttributes = Optional<IUserHasRollNumberModelAttributes, 'id'>;
|
|
5
|
+
export type TUserHasRollNumberWithAssociation = IUserHasRollNumberModelAttributes & {
|
|
6
|
+
rollNumberHasInstitute?: IInstituteAttributes;
|
|
7
|
+
rollNumberHasBatch?: IBatchModelAttributes;
|
|
8
|
+
batchHasRollNumber?: IUserHasRollNumberModelAttributes;
|
|
9
|
+
createdByUser?: IUserAttributes;
|
|
10
|
+
updatedByUser?: IUserAttributes;
|
|
11
|
+
deletedByUser?: IUserAttributes;
|
|
12
|
+
userRollNumber?: IUserAttributes;
|
|
13
|
+
userHRollNAcaCal?: IAcademicCalendarModelAttributes;
|
|
14
|
+
};
|
|
@@ -1,3 +1,10 @@
|
|
|
1
1
|
import { Optional } from 'sequelize';
|
|
2
|
-
import { IVisitorBookAttributes } from '../interfaces';
|
|
2
|
+
import { IAcademicCalendarModelAttributes, IInstituteAttributes, IUserAttributes, IVisitorBookAttributes } from '../interfaces';
|
|
3
3
|
export type TVisitorBookCreationAttributes = Optional<IVisitorBookAttributes, 'id'>;
|
|
4
|
+
export type TVisitorBookCreationWithAssociation = IVisitorBookAttributes & {
|
|
5
|
+
createdByUser?: IUserAttributes;
|
|
6
|
+
updatedByUser?: IUserAttributes;
|
|
7
|
+
deletedByUser?: IUserAttributes;
|
|
8
|
+
visitorBookInstitute?: IInstituteAttributes;
|
|
9
|
+
visitorBookAcaCal?: IAcademicCalendarModelAttributes;
|
|
10
|
+
};
|
package/package.json
CHANGED