@kipicore/dbcore 1.0.3 → 1.0.5
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/generate-index.d.ts +1 -0
- package/dist/generate-index.js +47 -0
- package/dist/index.d.ts +415 -0
- package/dist/index.js +458 -11
- package/dist/models/psql/userHasOfferModel.d.ts +1 -1
- package/dist/services/Contracts/IMongooseCommonService.d.ts +6 -5
- package/dist/services/Contracts/ISequelizeCommonService.d.ts +16 -15
- package/dist/types/generateIdCardType.d.ts +2 -2
- package/dist/types/userHasOffer.d.ts +1 -1
- package/package.json +1 -1
- package/dist/interfaces/PaymentProcessorInterface.d.ts +0 -0
- package/dist/interfaces/PaymentProcessorInterface.js +0 -1
- /package/dist/interfaces/{userHasOffer.d.ts → userHasOfferInterface.d.ts} +0 -0
- /package/dist/interfaces/{userHasOffer.js → userHasOfferInterface.js} +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function generateIndex(dirPaths: string[]): Promise<void>;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.generateIndex = generateIndex;
|
|
7
|
+
const promises_1 = __importDefault(require("fs/promises"));
|
|
8
|
+
const path_1 = __importDefault(require("path"));
|
|
9
|
+
async function generateIndex(dirPaths) {
|
|
10
|
+
try {
|
|
11
|
+
const indexFilePath = path_1.default.join(process.cwd(), "index.ts");
|
|
12
|
+
await promises_1.default.writeFile(indexFilePath, "");
|
|
13
|
+
let allExportLines = [];
|
|
14
|
+
for (const dirPath of dirPaths) {
|
|
15
|
+
const resolvedDir = path_1.default.join(process.cwd(), dirPath);
|
|
16
|
+
const files = await promises_1.default.readdir(resolvedDir);
|
|
17
|
+
const tsFiles = files.filter((file) => file.endsWith(".ts") && file !== "index.ts" && !file.endsWith(".d.ts"));
|
|
18
|
+
const exportLines = tsFiles.map((file) => {
|
|
19
|
+
const fileName = file.replace(".ts", "");
|
|
20
|
+
return `export * as ${fileName} from './${dirPath}/${fileName}';`;
|
|
21
|
+
});
|
|
22
|
+
allExportLines.push(...exportLines);
|
|
23
|
+
console.log(`✅ Found ${tsFiles.length} exports in "${resolvedDir}".`);
|
|
24
|
+
}
|
|
25
|
+
const finalContent = allExportLines.join("\n") + "\n";
|
|
26
|
+
await promises_1.default.writeFile(indexFilePath, finalContent);
|
|
27
|
+
console.log(`🚀 index.ts generated with ${allExportLines.length} exports.`);
|
|
28
|
+
}
|
|
29
|
+
catch (error) {
|
|
30
|
+
console.error("❌ Error generating index.ts:", error);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
// Example usage: Pass directories here
|
|
34
|
+
const dirsToProcess = [
|
|
35
|
+
"interfaces",
|
|
36
|
+
"helpers",
|
|
37
|
+
"services/Concrete",
|
|
38
|
+
"services/Contracts",
|
|
39
|
+
"types",
|
|
40
|
+
"configs",
|
|
41
|
+
"constants",
|
|
42
|
+
"models/mongodb",
|
|
43
|
+
"models/psql",
|
|
44
|
+
];
|
|
45
|
+
(async () => {
|
|
46
|
+
await generateIndex(dirsToProcess);
|
|
47
|
+
})();
|
package/dist/index.d.ts
CHANGED
|
@@ -0,0 +1,415 @@
|
|
|
1
|
+
export * as academicCalendarInterface from './interfaces/academicCalendarInterface';
|
|
2
|
+
export * as accountHasReceiptDetailsInterface from './interfaces/accountHasReceiptDetailsInterface';
|
|
3
|
+
export * as announcementInterface from './interfaces/announcementInterface';
|
|
4
|
+
export * as approvalRequestInterface from './interfaces/approvalRequestInterface';
|
|
5
|
+
export * as areaInterface from './interfaces/areaInterface';
|
|
6
|
+
export * as attendanceInterface from './interfaces/attendanceInterface';
|
|
7
|
+
export * as bankAccountDetailsInterface from './interfaces/bankAccountDetailsInterface';
|
|
8
|
+
export * as bannerInterface from './interfaces/bannerInterface';
|
|
9
|
+
export * as batchInterface from './interfaces/batchInterface';
|
|
10
|
+
export * as batchSubjectBookAssessmentInterface from './interfaces/batchSubjectBookAssessmentInterface';
|
|
11
|
+
export * as batchSubjectProjectAssessmentInterface from './interfaces/batchSubjectProjectAssessmentInterface';
|
|
12
|
+
export * as blogInterface from './interfaces/blogInterface';
|
|
13
|
+
export * as bookAssessmentDateInterface from './interfaces/bookAssessmentDateInterface';
|
|
14
|
+
export * as careerInterface from './interfaces/careerInterface';
|
|
15
|
+
export * as categoriesInterface from './interfaces/categoriesInterface';
|
|
16
|
+
export * as certificatesHistoryInterface from './interfaces/certificatesHistoryInterface';
|
|
17
|
+
export * as certificatesManagementInterface from './interfaces/certificatesManagementInterface';
|
|
18
|
+
export * as cityInterface from './interfaces/cityInterface';
|
|
19
|
+
export * as classRoomInterface from './interfaces/classRoomInterface';
|
|
20
|
+
export * as cloudStorageInterface from './interfaces/cloudStorageInterface';
|
|
21
|
+
export * as coinPurchaseOfferInterface from './interfaces/coinPurchaseOfferInterface';
|
|
22
|
+
export * as columnInterface from './interfaces/columnInterface';
|
|
23
|
+
export * as commanInterface from './interfaces/commanInterface';
|
|
24
|
+
export * as contactFeedBackInterface from './interfaces/contactFeedBackInterface';
|
|
25
|
+
export * as countryInterface from './interfaces/countryInterface';
|
|
26
|
+
export * as courseHasVisitorsInterface from './interfaces/courseHasVisitorsInterface';
|
|
27
|
+
export * as courseInterface from './interfaces/courseInterface';
|
|
28
|
+
export * as dailyBookInterface from './interfaces/dailyBookInterface';
|
|
29
|
+
export * as dashboardManagementInterface from './interfaces/dashboardManagementInterface';
|
|
30
|
+
export * as driverInterface from './interfaces/driverInterface';
|
|
31
|
+
export * as entityGroupInterface from './interfaces/entityGroupInterface';
|
|
32
|
+
export * as eventInterface from './interfaces/eventInterface';
|
|
33
|
+
export * as examGroupInterface from './interfaces/examGroupInterface';
|
|
34
|
+
export * as examHasAnswerSheetInterface from './interfaces/examHasAnswerSheetInterface';
|
|
35
|
+
export * as examInterface from './interfaces/examInterface';
|
|
36
|
+
export * as facilityInterface from './interfaces/facilityInterface';
|
|
37
|
+
export * as featureActionInterface from './interfaces/featureActionInterface';
|
|
38
|
+
export * as feeHistoryDetailsInterface from './interfaces/feeHistoryDetailsInterface';
|
|
39
|
+
export * as feeHistoryInterface from './interfaces/feeHistoryInterface';
|
|
40
|
+
export * as feeReminderInterface from './interfaces/feeReminderInterface';
|
|
41
|
+
export * as feeReminderSettingInterface from './interfaces/feeReminderSettingInterface';
|
|
42
|
+
export * as feeReminderTypeInterface from './interfaces/feeReminderTypeInterface';
|
|
43
|
+
export * as feeTypeHasTermsInterface from './interfaces/feeTypeHasTermsInterface';
|
|
44
|
+
export * as feeTypeInterface from './interfaces/feeTypeInterface';
|
|
45
|
+
export * as feedBackInterface from './interfaces/feedBackInterface';
|
|
46
|
+
export * as feesCollectionInterface from './interfaces/feesCollectionInterface';
|
|
47
|
+
export * as fileStorageInterface from './interfaces/fileStorageInterface';
|
|
48
|
+
export * as floorManagementInterface from './interfaces/floorManagementInterface';
|
|
49
|
+
export * as generateIdCardInterface from './interfaces/generateIdCardInterface';
|
|
50
|
+
export * as greetingsInterface from './interfaces/greetingsInterface';
|
|
51
|
+
export * as holidayInterface from './interfaces/holidayInterface';
|
|
52
|
+
export * as homeworkInterface from './interfaces/homeworkInterface';
|
|
53
|
+
export * as informationSupportInterface from './interfaces/informationSupportInterface';
|
|
54
|
+
export * as inquiryInterface from './interfaces/inquiryInterface';
|
|
55
|
+
export * as instituteEntityInterface from './interfaces/instituteEntityInterface';
|
|
56
|
+
export * as instituteEntityTypeInterface from './interfaces/instituteEntityTypeInterface';
|
|
57
|
+
export * as instituteInterface from './interfaces/instituteInterface';
|
|
58
|
+
export * as instituteSubscriptionPlanInterface from './interfaces/instituteSubscriptionPlanInterface';
|
|
59
|
+
export * as inventoryHistoryInterface from './interfaces/inventoryHistoryInterface';
|
|
60
|
+
export * as inventoryInterface from './interfaces/inventoryInterface';
|
|
61
|
+
export * as invoiceInterface from './interfaces/invoiceInterface';
|
|
62
|
+
export * as jobApplyInterface from './interfaces/jobApplyInterface';
|
|
63
|
+
export * as lectureHistoryInterface from './interfaces/lectureHistoryInterface';
|
|
64
|
+
export * as lectureInterface from './interfaces/lectureInterface';
|
|
65
|
+
export * as masterLeaveInterface from './interfaces/masterLeaveInterface';
|
|
66
|
+
export * as moduleFeatureInterface from './interfaces/moduleFeatureInterface';
|
|
67
|
+
export * as moduleInterface from './interfaces/moduleInterface';
|
|
68
|
+
export * as offersInterface from './interfaces/offersInterface';
|
|
69
|
+
export * as paymentTermsInterface from './interfaces/paymentTermsInterface';
|
|
70
|
+
export * as pdcChequeInterface from './interfaces/pdcChequeInterface';
|
|
71
|
+
export * as pdcHistoryInterface from './interfaces/pdcHistoryInterface';
|
|
72
|
+
export * as photosGalleryInterface from './interfaces/photosGalleryInterface';
|
|
73
|
+
export * as pincodeInterface from './interfaces/pincodeInterface';
|
|
74
|
+
export * as plannerInterface from './interfaces/plannerInterface';
|
|
75
|
+
export * as productInterface from './interfaces/productInterface';
|
|
76
|
+
export * as projectAssessmentOptionInterface from './interfaces/projectAssessmentOptionInterface';
|
|
77
|
+
export * as replaceTeacherInterface from './interfaces/replaceTeacherInterface';
|
|
78
|
+
export * as roleInterface from './interfaces/roleInterface';
|
|
79
|
+
export * as rulesRegulationInterface from './interfaces/rulesRegulationInterface';
|
|
80
|
+
export * as schoolFeeCollectionInterface from './interfaces/schoolFeeCollectionInterface';
|
|
81
|
+
export * as schoolFeeInterface from './interfaces/schoolFeeInterface';
|
|
82
|
+
export * as schoolOfferInterface from './interfaces/schoolOfferInterface';
|
|
83
|
+
export * as sendNotificationInerface from './interfaces/sendNotificationInerface';
|
|
84
|
+
export * as slotInterface from './interfaces/slotInterface';
|
|
85
|
+
export * as stateInterface from './interfaces/stateInterface';
|
|
86
|
+
export * as subCategoriesInterface from './interfaces/subCategoriesInterface';
|
|
87
|
+
export * as subjectHasFeeInterface from './interfaces/subjectHasFeeInterface';
|
|
88
|
+
export * as subjectHasPayFeeHistoryInterface from './interfaces/subjectHasPayFeeHistoryInterface';
|
|
89
|
+
export * as subjectIndexInterface from './interfaces/subjectIndexInterface';
|
|
90
|
+
export * as subscriptionPlanInterface from './interfaces/subscriptionPlanInterface';
|
|
91
|
+
export * as syllabusInterface from './interfaces/syllabusInterface';
|
|
92
|
+
export * as taskManagementInterface from './interfaces/taskManagementInterface';
|
|
93
|
+
export * as testimonialInterface from './interfaces/testimonialInterface';
|
|
94
|
+
export * as toDoInterface from './interfaces/toDoInterface';
|
|
95
|
+
export * as tokenInterface from './interfaces/tokenInterface';
|
|
96
|
+
export * as tripInterface from './interfaces/tripInterface';
|
|
97
|
+
export * as typeManagementInterface from './interfaces/typeManagementInterface';
|
|
98
|
+
export * as uniqueNumberCounterInterface from './interfaces/uniqueNumberCounterInterface';
|
|
99
|
+
export * as userBookAssessmentInterface from './interfaces/userBookAssessmentInterface';
|
|
100
|
+
export * as userDetailsInterface from './interfaces/userDetailsInterface';
|
|
101
|
+
export * as userFeeTypeByAccountInterface from './interfaces/userFeeTypeByAccountInterface';
|
|
102
|
+
export * as userFeeTypeInterface from './interfaces/userFeeTypeInterface';
|
|
103
|
+
export * as userHasAnnouncementInterface from './interfaces/userHasAnnouncementInterface';
|
|
104
|
+
export * as userHasBatchInterface from './interfaces/userHasBatchInterface';
|
|
105
|
+
export * as userHasCourseInterface from './interfaces/userHasCourseInterface';
|
|
106
|
+
export * as userHasDeviceInterface from './interfaces/userHasDeviceInterface';
|
|
107
|
+
export * as userHasFeeTermsInterface from './interfaces/userHasFeeTermsInterface';
|
|
108
|
+
export * as userHasFileInterface from './interfaces/userHasFileInterface';
|
|
109
|
+
export * as userHasHomeWorkInterface from './interfaces/userHasHomeWorkInterface';
|
|
110
|
+
export * as userHasInventoryHistoryInterface from './interfaces/userHasInventoryHistoryInterface';
|
|
111
|
+
export * as userHasInventoryInterface from './interfaces/userHasInventoryInterface';
|
|
112
|
+
export * as userHasLeaveHistoryInterface from './interfaces/userHasLeaveHistoryInterface';
|
|
113
|
+
export * as userHasLeaveInterface from './interfaces/userHasLeaveInterface';
|
|
114
|
+
export * as userHasOfferInterface from './interfaces/userHasOfferInterface';
|
|
115
|
+
export * as userHasParentInterface from './interfaces/userHasParentInterface';
|
|
116
|
+
export * as userHasRoleInterface from './interfaces/userHasRoleInterface';
|
|
117
|
+
export * as userHasRollNumberInterface from './interfaces/userHasRollNumberInterface';
|
|
118
|
+
export * as userHasStorageInterface from './interfaces/userHasStorageInterface';
|
|
119
|
+
export * as userHasSubjectFeeInterface from './interfaces/userHasSubjectFeeInterface';
|
|
120
|
+
export * as userInstituteMetaInterface from './interfaces/userInstituteMetaInterface';
|
|
121
|
+
export * as userInterface from './interfaces/userInterface';
|
|
122
|
+
export * as userLeaveRequestInterface from './interfaces/userLeaveRequestInterface';
|
|
123
|
+
export * as userMetaInterface from './interfaces/userMetaInterface';
|
|
124
|
+
export * as userPayoutDetailsInterface from './interfaces/userPayoutDetailsInterface';
|
|
125
|
+
export * as userPayoutHistoryInterface from './interfaces/userPayoutHistoryInterface';
|
|
126
|
+
export * as userPayoutInterface from './interfaces/userPayoutInterface';
|
|
127
|
+
export * as userProjectAssessmentOptionInterface from './interfaces/userProjectAssessmentOptionInterface';
|
|
128
|
+
export * as userRequiredStepsInterface from './interfaces/userRequiredStepsInterface';
|
|
129
|
+
export * as userSchoolMetaInterface from './interfaces/userSchoolMetaInterface';
|
|
130
|
+
export * as vehicleInterface from './interfaces/vehicleInterface';
|
|
131
|
+
export * as vendorManagementInterface from './interfaces/vendorManagementInterface';
|
|
132
|
+
export * as videoAnalystInterface from './interfaces/videoAnalystInterface';
|
|
133
|
+
export * as walletHistoryInterface from './interfaces/walletHistoryInterface';
|
|
134
|
+
export * as walletInterface from './interfaces/walletInterface';
|
|
135
|
+
export * as walletTransactionInterface from './interfaces/walletTransactionInterface';
|
|
136
|
+
export * as workingDayInterface from './interfaces/workingDayInterface';
|
|
137
|
+
export * as workingShiftInterface from './interfaces/workingShiftInterface';
|
|
138
|
+
export * as s3Uploader from './helpers/s3Uploader';
|
|
139
|
+
export * as utils from './helpers/utils';
|
|
140
|
+
export * as mongooseCommonService from './services/Concrete/mongooseCommonService';
|
|
141
|
+
export * as sequelizeCommanService from './services/Concrete/sequelizeCommanService';
|
|
142
|
+
export * as IMongooseCommonService from './services/Contracts/IMongooseCommonService';
|
|
143
|
+
export * as ISequelizeCommonService from './services/Contracts/ISequelizeCommonService';
|
|
144
|
+
export * as academicCalendarType from './types/academicCalendarType';
|
|
145
|
+
export * as accountHasReceiptDetailsType from './types/accountHasReceiptDetailsType';
|
|
146
|
+
export * as announcementType from './types/announcementType';
|
|
147
|
+
export * as approveRequestType from './types/approveRequestType';
|
|
148
|
+
export * as areaType from './types/areaType';
|
|
149
|
+
export * as attendanceType from './types/attendanceType';
|
|
150
|
+
export * as bankAccountDetailsType from './types/bankAccountDetailsType';
|
|
151
|
+
export * as bannerType from './types/bannerType';
|
|
152
|
+
export * as batchSubjectBookAssessmentType from './types/batchSubjectBookAssessmentType';
|
|
153
|
+
export * as batchSubjectProjectAssessmentType from './types/batchSubjectProjectAssessmentType';
|
|
154
|
+
export * as batchType from './types/batchType';
|
|
155
|
+
export * as blogType from './types/blogType';
|
|
156
|
+
export * as bookAssessmentDateType from './types/bookAssessmentDateType';
|
|
157
|
+
export * as careerType from './types/careerType';
|
|
158
|
+
export * as categoriesType from './types/categoriesType';
|
|
159
|
+
export * as certificatesHistoryType from './types/certificatesHistoryType';
|
|
160
|
+
export * as certificatesManagementType from './types/certificatesManagementType';
|
|
161
|
+
export * as classRoomType from './types/classRoomType';
|
|
162
|
+
export * as cloudStorageType from './types/cloudStorageType';
|
|
163
|
+
export * as coinPurchaseOfferType from './types/coinPurchaseOfferType';
|
|
164
|
+
export * as commonType from './types/commonType';
|
|
165
|
+
export * as contactFeedBackType from './types/contactFeedBackType';
|
|
166
|
+
export * as courseHasVisitorsType from './types/courseHasVisitorsType';
|
|
167
|
+
export * as courseType from './types/courseType';
|
|
168
|
+
export * as dailyBookType from './types/dailyBookType';
|
|
169
|
+
export * as dashboardManagementType from './types/dashboardManagementType';
|
|
170
|
+
export * as driverType from './types/driverType';
|
|
171
|
+
export * as entityGroupType from './types/entityGroupType';
|
|
172
|
+
export * as eventType from './types/eventType';
|
|
173
|
+
export * as examGroupType from './types/examGroupType';
|
|
174
|
+
export * as examHasAnswerSheetType from './types/examHasAnswerSheetType';
|
|
175
|
+
export * as examType from './types/examType';
|
|
176
|
+
export * as facilityType from './types/facilityType';
|
|
177
|
+
export * as featureActionType from './types/featureActionType';
|
|
178
|
+
export * as feeHistoryDetailsType from './types/feeHistoryDetailsType';
|
|
179
|
+
export * as feeHistoryType from './types/feeHistoryType';
|
|
180
|
+
export * as feeReminderSettingType from './types/feeReminderSettingType';
|
|
181
|
+
export * as feeReminderType from './types/feeReminderType';
|
|
182
|
+
export * as feeReminderTypeType from './types/feeReminderTypeType';
|
|
183
|
+
export * as feeTypeHasTermsType from './types/feeTypeHasTermsType';
|
|
184
|
+
export * as feeTypeType from './types/feeTypeType';
|
|
185
|
+
export * as feedBackType from './types/feedBackType';
|
|
186
|
+
export * as feesCollectionType from './types/feesCollectionType';
|
|
187
|
+
export * as fileStorageType from './types/fileStorageType';
|
|
188
|
+
export * as floormanagementType from './types/floormanagementType';
|
|
189
|
+
export * as generateIdCardType from './types/generateIdCardType';
|
|
190
|
+
export * as greetingsType from './types/greetingsType';
|
|
191
|
+
export * as holidayType from './types/holidayType';
|
|
192
|
+
export * as homeWorkType from './types/homeWorkType';
|
|
193
|
+
export * as informationSupportType from './types/informationSupportType';
|
|
194
|
+
export * as inquiryType from './types/inquiryType';
|
|
195
|
+
export * as instituteEntityType from './types/instituteEntityType';
|
|
196
|
+
export * as instituteEntityTypeType from './types/instituteEntityTypeType';
|
|
197
|
+
export * as instituteSubscriptionPlanType from './types/instituteSubscriptionPlanType';
|
|
198
|
+
export * as instituteType from './types/instituteType';
|
|
199
|
+
export * as inventoryHistoryType from './types/inventoryHistoryType';
|
|
200
|
+
export * as inventoryType from './types/inventoryType';
|
|
201
|
+
export * as jobApply from './types/jobApply';
|
|
202
|
+
export * as lectureHistoryType from './types/lectureHistoryType';
|
|
203
|
+
export * as lectureType from './types/lectureType';
|
|
204
|
+
export * as masterLeaveType from './types/masterLeaveType';
|
|
205
|
+
export * as moduleFeatureType from './types/moduleFeatureType';
|
|
206
|
+
export * as moduleType from './types/moduleType';
|
|
207
|
+
export * as offerType from './types/offerType';
|
|
208
|
+
export * as paymentTermsType from './types/paymentTermsType';
|
|
209
|
+
export * as pdcChequeType from './types/pdcChequeType';
|
|
210
|
+
export * as pdcHistoryType from './types/pdcHistoryType';
|
|
211
|
+
export * as photosGalleryType from './types/photosGalleryType';
|
|
212
|
+
export * as plannerType from './types/plannerType';
|
|
213
|
+
export * as productType from './types/productType';
|
|
214
|
+
export * as projectAssessmentOptionType from './types/projectAssessmentOptionType';
|
|
215
|
+
export * as roleType from './types/roleType';
|
|
216
|
+
export * as rulesRegulationType from './types/rulesRegulationType';
|
|
217
|
+
export * as schoolFeeCollectionType from './types/schoolFeeCollectionType';
|
|
218
|
+
export * as schoolFeeType from './types/schoolFeeType';
|
|
219
|
+
export * as schoolOfferType from './types/schoolOfferType';
|
|
220
|
+
export * as sendNotificationType from './types/sendNotificationType';
|
|
221
|
+
export * as slotType from './types/slotType';
|
|
222
|
+
export * as subCategoryType from './types/subCategoryType';
|
|
223
|
+
export * as subjectHasFeeType from './types/subjectHasFeeType';
|
|
224
|
+
export * as subjectHasPayFeeHistoryType from './types/subjectHasPayFeeHistoryType';
|
|
225
|
+
export * as subjectIndexType from './types/subjectIndexType';
|
|
226
|
+
export * as subscriptionPlanType from './types/subscriptionPlanType';
|
|
227
|
+
export * as syllabusType from './types/syllabusType';
|
|
228
|
+
export * as taskManagementType from './types/taskManagementType';
|
|
229
|
+
export * as testimonialType from './types/testimonialType';
|
|
230
|
+
export * as toDoType from './types/toDoType';
|
|
231
|
+
export * as tripType from './types/tripType';
|
|
232
|
+
export * as typeManagementType from './types/typeManagementType';
|
|
233
|
+
export * as uniqueNumberCounterType from './types/uniqueNumberCounterType';
|
|
234
|
+
export * as userBookAssessmentType from './types/userBookAssessmentType';
|
|
235
|
+
export * as userDetailsType from './types/userDetailsType';
|
|
236
|
+
export * as userFeeTypeByAccountType from './types/userFeeTypeByAccountType';
|
|
237
|
+
export * as userFeeTypeType from './types/userFeeTypeType';
|
|
238
|
+
export * as userHasAnnouncementType from './types/userHasAnnouncementType';
|
|
239
|
+
export * as userHasBatchType from './types/userHasBatchType';
|
|
240
|
+
export * as userHasCourseType from './types/userHasCourseType';
|
|
241
|
+
export * as userHasDeviceType from './types/userHasDeviceType';
|
|
242
|
+
export * as userHasFeeTermsType from './types/userHasFeeTermsType';
|
|
243
|
+
export * as userHasFileType from './types/userHasFileType';
|
|
244
|
+
export * as userHasHomeWorkType from './types/userHasHomeWorkType';
|
|
245
|
+
export * as userHasInventoryHistoryType from './types/userHasInventoryHistoryType';
|
|
246
|
+
export * as userHasInventoryType from './types/userHasInventoryType';
|
|
247
|
+
export * as userHasLeaveHistoryType from './types/userHasLeaveHistoryType';
|
|
248
|
+
export * as userHasLeaveType from './types/userHasLeaveType';
|
|
249
|
+
export * as userHasOffer from './types/userHasOffer';
|
|
250
|
+
export * as userHasParentType from './types/userHasParentType';
|
|
251
|
+
export * as userHasRoleType from './types/userHasRoleType';
|
|
252
|
+
export * as userHasRollNumberType from './types/userHasRollNumberType';
|
|
253
|
+
export * as userHasStorageType from './types/userHasStorageType';
|
|
254
|
+
export * as userHasSubjectFeeType from './types/userHasSubjectFeeType';
|
|
255
|
+
export * as userInstituteMetaType from './types/userInstituteMetaType';
|
|
256
|
+
export * as userLeaveRequestType from './types/userLeaveRequestType';
|
|
257
|
+
export * as userMetaType from './types/userMetaType';
|
|
258
|
+
export * as userPayoutDetailsType from './types/userPayoutDetailsType';
|
|
259
|
+
export * as userPayoutHistoryType from './types/userPayoutHistoryType';
|
|
260
|
+
export * as userPayoutType from './types/userPayoutType';
|
|
261
|
+
export * as userProjectAssessmentOptionType from './types/userProjectAssessmentOptionType';
|
|
262
|
+
export * as userRequiredStepsType from './types/userRequiredStepsType';
|
|
263
|
+
export * as userSchoolMetaType from './types/userSchoolMetaType';
|
|
264
|
+
export * as userType from './types/userType';
|
|
265
|
+
export * as vehicleType from './types/vehicleType';
|
|
266
|
+
export * as vendorType from './types/vendorType';
|
|
267
|
+
export * as videoAnalystType from './types/videoAnalystType';
|
|
268
|
+
export * as walletHistoryType from './types/walletHistoryType';
|
|
269
|
+
export * as walletTransactionType from './types/walletTransactionType';
|
|
270
|
+
export * as walletType from './types/walletType';
|
|
271
|
+
export * as workingDayType from './types/workingDayType';
|
|
272
|
+
export * as workingShiftType from './types/workingShiftType';
|
|
273
|
+
export * as aws from './configs/aws';
|
|
274
|
+
export * as env from './configs/env';
|
|
275
|
+
export * as app from './constants/app';
|
|
276
|
+
export * as defaultModelAttributes from './constants/defaultModelAttributes';
|
|
277
|
+
export * as errorMessages from './constants/errorMessages';
|
|
278
|
+
export * as httpStatusCode from './constants/httpStatusCode';
|
|
279
|
+
export * as successMessages from './constants/successMessages';
|
|
280
|
+
export * as approvalRequestModel from './models/mongodb/approvalRequestModel';
|
|
281
|
+
export * as attendanceModel from './models/mongodb/attendanceModel';
|
|
282
|
+
export * as blogModel from './models/mongodb/blogModel';
|
|
283
|
+
export * as careerModel from './models/mongodb/careerModel';
|
|
284
|
+
export * as certificatesHistoryModel from './models/mongodb/certificatesHistoryModel';
|
|
285
|
+
export * as certificatesManagementModel from './models/mongodb/certificatesManagementModel';
|
|
286
|
+
export * as columnModel from './models/mongodb/columnModel';
|
|
287
|
+
export * as dailyBookModel from './models/mongodb/dailyBookModel';
|
|
288
|
+
export * as dashboardManagementModel from './models/mongodb/dashboardManagementModel';
|
|
289
|
+
export * as eventModel from './models/mongodb/eventModel';
|
|
290
|
+
export * as examGroupModel from './models/mongodb/examGroupModel';
|
|
291
|
+
export * as examHasAnswerSheetModel from './models/mongodb/examHasAnswerSheetModel';
|
|
292
|
+
export * as examModel from './models/mongodb/examModel';
|
|
293
|
+
export * as feeReminderTypeModel from './models/mongodb/feeReminderTypeModel';
|
|
294
|
+
export * as feedBackModel from './models/mongodb/feedBackModel';
|
|
295
|
+
export * as generateIdCardModel from './models/mongodb/generateIdCardModel';
|
|
296
|
+
export * as holidayModel from './models/mongodb/holidayModel';
|
|
297
|
+
export * as informationSupportModel from './models/mongodb/informationSupportModel';
|
|
298
|
+
export * as inquiryModel from './models/mongodb/inquiryModel';
|
|
299
|
+
export * as invoiceModel from './models/mongodb/invoiceModel';
|
|
300
|
+
export * as jobApplyModel from './models/mongodb/jobApplyModel';
|
|
301
|
+
export * as photosGalleryModel from './models/mongodb/photosGalleryModel';
|
|
302
|
+
export * as plannerModel from './models/mongodb/plannerModel';
|
|
303
|
+
export * as replaceTeacherModel from './models/mongodb/replaceTeacherModel';
|
|
304
|
+
export * as schoolFeeModel from './models/mongodb/schoolFeeModel';
|
|
305
|
+
export * as subjectIndexModel from './models/mongodb/subjectIndexModel';
|
|
306
|
+
export * as subscriptionPlanModel from './models/mongodb/subscriptionPlanModel';
|
|
307
|
+
export * as taskManagementModel from './models/mongodb/taskManagementModel';
|
|
308
|
+
export * as uniqueNumberCounterModel from './models/mongodb/uniqueNumberCounterModel';
|
|
309
|
+
export * as userDetailsModel from './models/mongodb/userDetailsModel';
|
|
310
|
+
export * as userDoc from './models/mongodb/userDoc';
|
|
311
|
+
export * as userInstituteMetaModel from './models/mongodb/userInstituteMetaModel';
|
|
312
|
+
export * as userSchoolMetaModel from './models/mongodb/userSchoolMetaModel';
|
|
313
|
+
export * as videoAnalystModel from './models/mongodb/videoAnalystModel';
|
|
314
|
+
export * as walletTransactionModel from './models/mongodb/walletTransactionModel';
|
|
315
|
+
export * as SubCategoriesModel from './models/psql/SubCategoriesModel';
|
|
316
|
+
export * as academicCalendarModel from './models/psql/academicCalendarModel';
|
|
317
|
+
export * as accountHasReceiptDetailsModel from './models/psql/accountHasReceiptDetailsModel';
|
|
318
|
+
export * as announcementModel from './models/psql/announcementModel';
|
|
319
|
+
export * as areaModel from './models/psql/areaModel';
|
|
320
|
+
export * as bankAccountDetailsModel from './models/psql/bankAccountDetailsModel';
|
|
321
|
+
export * as bannerModel from './models/psql/bannerModel';
|
|
322
|
+
export * as batchModel from './models/psql/batchModel';
|
|
323
|
+
export * as batchSubjectBookAssessmentModel from './models/psql/batchSubjectBookAssessmentModel';
|
|
324
|
+
export * as batchSubjectProjectAssessmentModel from './models/psql/batchSubjectProjectAssessmentModel';
|
|
325
|
+
export * as bookAssessmentDateModel from './models/psql/bookAssessmentDateModel';
|
|
326
|
+
export * as categoriesModel from './models/psql/categoriesModel';
|
|
327
|
+
export * as cityModel from './models/psql/cityModel';
|
|
328
|
+
export * as classRoomModel from './models/psql/classRoomModel';
|
|
329
|
+
export * as cloudStorageModel from './models/psql/cloudStorageModel';
|
|
330
|
+
export * as coinPurchaseOfferModel from './models/psql/coinPurchaseOfferModel';
|
|
331
|
+
export * as contactFeedBackModel from './models/psql/contactFeedBackModel';
|
|
332
|
+
export * as countryModel from './models/psql/countryModel';
|
|
333
|
+
export * as courseHasVisitorsModel from './models/psql/courseHasVisitorsModel';
|
|
334
|
+
export * as courseModel from './models/psql/courseModel';
|
|
335
|
+
export * as driverModel from './models/psql/driverModel';
|
|
336
|
+
export * as entityGroupModel from './models/psql/entityGroupModel';
|
|
337
|
+
export * as facilityModel from './models/psql/facilityModel';
|
|
338
|
+
export * as featureActionModel from './models/psql/featureActionModel';
|
|
339
|
+
export * as feeHistoryDetailsModel from './models/psql/feeHistoryDetailsModel';
|
|
340
|
+
export * as feeHistoryModel from './models/psql/feeHistoryModel';
|
|
341
|
+
export * as feeReminderModel from './models/psql/feeReminderModel';
|
|
342
|
+
export * as feeReminderSettingModel from './models/psql/feeReminderSettingModel';
|
|
343
|
+
export * as feeTypeHasTermsModel from './models/psql/feeTypeHasTermsModel';
|
|
344
|
+
export * as feeTypeModel from './models/psql/feeTypeModel';
|
|
345
|
+
export * as feesCollectionModel from './models/psql/feesCollectionModel';
|
|
346
|
+
export * as fileStorageModel from './models/psql/fileStorageModel';
|
|
347
|
+
export * as floorManagementModel from './models/psql/floorManagementModel';
|
|
348
|
+
export * as greetingsModel from './models/psql/greetingsModel';
|
|
349
|
+
export * as homeWorkModel from './models/psql/homeWorkModel';
|
|
350
|
+
export * as instituteEntityModel from './models/psql/instituteEntityModel';
|
|
351
|
+
export * as instituteEntityTypeModel from './models/psql/instituteEntityTypeModel';
|
|
352
|
+
export * as instituteModel from './models/psql/instituteModel';
|
|
353
|
+
export * as instituteSubscriptionPlanModel from './models/psql/instituteSubscriptionPlanModel';
|
|
354
|
+
export * as inventoryHistoryModel from './models/psql/inventoryHistoryModel';
|
|
355
|
+
export * as inventoryModel from './models/psql/inventoryModel';
|
|
356
|
+
export * as lectureHistoryModel from './models/psql/lectureHistoryModel';
|
|
357
|
+
export * as lectureModel from './models/psql/lectureModel';
|
|
358
|
+
export * as masterLeaveModel from './models/psql/masterLeaveModel';
|
|
359
|
+
export * as moduleFeatureModel from './models/psql/moduleFeatureModel';
|
|
360
|
+
export * as moduleModel from './models/psql/moduleModel';
|
|
361
|
+
export * as offerModel from './models/psql/offerModel';
|
|
362
|
+
export * as paymentTermsModel from './models/psql/paymentTermsModel';
|
|
363
|
+
export * as pdcChequeModel from './models/psql/pdcChequeModel';
|
|
364
|
+
export * as pdcHistoryModel from './models/psql/pdcHistoryModel';
|
|
365
|
+
export * as pincodeModel from './models/psql/pincodeModel';
|
|
366
|
+
export * as productModel from './models/psql/productModel';
|
|
367
|
+
export * as projectAssessmentOptionModel from './models/psql/projectAssessmentOptionModel';
|
|
368
|
+
export * as roleModel from './models/psql/roleModel';
|
|
369
|
+
export * as rulesRegulationModel from './models/psql/rulesRegulationModel';
|
|
370
|
+
export * as schoolFeeCollectionModel from './models/psql/schoolFeeCollectionModel';
|
|
371
|
+
export * as schoolOfferModel from './models/psql/schoolOfferModel';
|
|
372
|
+
export * as sendNotificationModel from './models/psql/sendNotificationModel';
|
|
373
|
+
export * as slotModel from './models/psql/slotModel';
|
|
374
|
+
export * as stateModel from './models/psql/stateModel';
|
|
375
|
+
export * as subjectHasFeeModel from './models/psql/subjectHasFeeModel';
|
|
376
|
+
export * as subjectHasPayFeeHistoryModel from './models/psql/subjectHasPayFeeHistoryModel';
|
|
377
|
+
export * as syllabusModel from './models/psql/syllabusModel';
|
|
378
|
+
export * as testimonialModel from './models/psql/testimonialModel';
|
|
379
|
+
export * as toDoModel from './models/psql/toDoModel';
|
|
380
|
+
export * as tokenModel from './models/psql/tokenModel';
|
|
381
|
+
export * as tripModel from './models/psql/tripModel';
|
|
382
|
+
export * as typeManagementModel from './models/psql/typeManagementModel';
|
|
383
|
+
export * as userBookAssessmentModel from './models/psql/userBookAssessmentModel';
|
|
384
|
+
export * as userFeeTypeByAccountModel from './models/psql/userFeeTypeByAccountModel';
|
|
385
|
+
export * as userFeeTypeModel from './models/psql/userFeeTypeModel';
|
|
386
|
+
export * as userHasAnnouncementModel from './models/psql/userHasAnnouncementModel';
|
|
387
|
+
export * as userHasBatchModel from './models/psql/userHasBatchModel';
|
|
388
|
+
export * as userHasCourseModel from './models/psql/userHasCourseModel';
|
|
389
|
+
export * as userHasDeviceModel from './models/psql/userHasDeviceModel';
|
|
390
|
+
export * as userHasFeeTermsModel from './models/psql/userHasFeeTermsModel';
|
|
391
|
+
export * as userHasFileModel from './models/psql/userHasFileModel';
|
|
392
|
+
export * as userHasHomeWorkModel from './models/psql/userHasHomeWorkModel';
|
|
393
|
+
export * as userHasInventoryHistoryModel from './models/psql/userHasInventoryHistoryModel';
|
|
394
|
+
export * as userHasInventoryModel from './models/psql/userHasInventoryModel';
|
|
395
|
+
export * as userHasLeaveHistoryModel from './models/psql/userHasLeaveHistoryModel';
|
|
396
|
+
export * as userHasLeaveModel from './models/psql/userHasLeaveModel';
|
|
397
|
+
export * as userHasOfferModel from './models/psql/userHasOfferModel';
|
|
398
|
+
export * as userHasParentModel from './models/psql/userHasParentModel';
|
|
399
|
+
export * as userHasRoleModel from './models/psql/userHasRoleModel';
|
|
400
|
+
export * as userHasRollNumberModel from './models/psql/userHasRollNumberModel';
|
|
401
|
+
export * as userHasStorageModel from './models/psql/userHasStorageModel';
|
|
402
|
+
export * as userHasSubjectFeeModel from './models/psql/userHasSubjectFeeModel';
|
|
403
|
+
export * as userLeaveRequestModel from './models/psql/userLeaveRequestModel';
|
|
404
|
+
export * as userModel from './models/psql/userModel';
|
|
405
|
+
export * as userPayoutDetailsModel from './models/psql/userPayoutDetailsModel';
|
|
406
|
+
export * as userPayoutHistoryModel from './models/psql/userPayoutHistoryModel';
|
|
407
|
+
export * as userPayoutModel from './models/psql/userPayoutModel';
|
|
408
|
+
export * as userProjectAssessmentOptionModel from './models/psql/userProjectAssessmentOptionModel';
|
|
409
|
+
export * as userRequiredStepsModel from './models/psql/userRequiredStepsModel';
|
|
410
|
+
export * as vehicleModel from './models/psql/vehicleModel';
|
|
411
|
+
export * as vendorManagementModel from './models/psql/vendorManagementModel';
|
|
412
|
+
export * as walletHistoryModel from './models/psql/walletHistoryModel';
|
|
413
|
+
export * as walletModel from './models/psql/walletModel';
|
|
414
|
+
export * as workingDayModel from './models/psql/workingDayModel';
|
|
415
|
+
export * as workingShiftModel from './models/psql/workingShiftModel';
|
package/dist/index.js
CHANGED
|
@@ -1,12 +1,459 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.greetingsInterface = exports.generateIdCardInterface = exports.floorManagementInterface = exports.fileStorageInterface = exports.feesCollectionInterface = exports.feedBackInterface = exports.feeTypeInterface = exports.feeTypeHasTermsInterface = exports.feeReminderTypeInterface = exports.feeReminderSettingInterface = exports.feeReminderInterface = exports.feeHistoryInterface = exports.feeHistoryDetailsInterface = exports.featureActionInterface = exports.facilityInterface = exports.examInterface = exports.examHasAnswerSheetInterface = exports.examGroupInterface = exports.eventInterface = exports.entityGroupInterface = exports.driverInterface = exports.dashboardManagementInterface = exports.dailyBookInterface = exports.courseInterface = exports.courseHasVisitorsInterface = exports.countryInterface = exports.contactFeedBackInterface = exports.commanInterface = exports.columnInterface = exports.coinPurchaseOfferInterface = exports.cloudStorageInterface = exports.classRoomInterface = exports.cityInterface = exports.certificatesManagementInterface = exports.certificatesHistoryInterface = exports.categoriesInterface = exports.careerInterface = exports.bookAssessmentDateInterface = exports.blogInterface = exports.batchSubjectProjectAssessmentInterface = exports.batchSubjectBookAssessmentInterface = exports.batchInterface = exports.bannerInterface = exports.bankAccountDetailsInterface = exports.attendanceInterface = exports.areaInterface = exports.approvalRequestInterface = exports.announcementInterface = exports.accountHasReceiptDetailsInterface = exports.academicCalendarInterface = void 0;
|
|
37
|
+
exports.userDetailsInterface = exports.userBookAssessmentInterface = exports.uniqueNumberCounterInterface = exports.typeManagementInterface = exports.tripInterface = exports.tokenInterface = exports.toDoInterface = exports.testimonialInterface = exports.taskManagementInterface = exports.syllabusInterface = exports.subscriptionPlanInterface = exports.subjectIndexInterface = exports.subjectHasPayFeeHistoryInterface = exports.subjectHasFeeInterface = exports.subCategoriesInterface = exports.stateInterface = exports.slotInterface = exports.sendNotificationInerface = exports.schoolOfferInterface = exports.schoolFeeInterface = exports.schoolFeeCollectionInterface = exports.rulesRegulationInterface = exports.roleInterface = exports.replaceTeacherInterface = exports.projectAssessmentOptionInterface = exports.productInterface = exports.plannerInterface = exports.pincodeInterface = exports.photosGalleryInterface = exports.pdcHistoryInterface = exports.pdcChequeInterface = exports.paymentTermsInterface = exports.offersInterface = exports.moduleInterface = exports.moduleFeatureInterface = exports.masterLeaveInterface = exports.lectureInterface = exports.lectureHistoryInterface = exports.jobApplyInterface = exports.invoiceInterface = exports.inventoryInterface = exports.inventoryHistoryInterface = exports.instituteSubscriptionPlanInterface = exports.instituteInterface = exports.instituteEntityTypeInterface = exports.instituteEntityInterface = exports.inquiryInterface = exports.informationSupportInterface = exports.homeworkInterface = exports.holidayInterface = void 0;
|
|
38
|
+
exports.bankAccountDetailsType = exports.attendanceType = exports.areaType = exports.approveRequestType = exports.announcementType = exports.accountHasReceiptDetailsType = exports.academicCalendarType = exports.ISequelizeCommonService = exports.IMongooseCommonService = exports.sequelizeCommanService = exports.mongooseCommonService = exports.utils = exports.s3Uploader = exports.workingShiftInterface = exports.workingDayInterface = exports.walletTransactionInterface = exports.walletInterface = exports.walletHistoryInterface = exports.videoAnalystInterface = exports.vendorManagementInterface = exports.vehicleInterface = exports.userSchoolMetaInterface = exports.userRequiredStepsInterface = exports.userProjectAssessmentOptionInterface = exports.userPayoutInterface = exports.userPayoutHistoryInterface = exports.userPayoutDetailsInterface = exports.userMetaInterface = exports.userLeaveRequestInterface = exports.userInterface = exports.userInstituteMetaInterface = exports.userHasSubjectFeeInterface = exports.userHasStorageInterface = exports.userHasRollNumberInterface = exports.userHasRoleInterface = exports.userHasParentInterface = exports.userHasOfferInterface = exports.userHasLeaveInterface = exports.userHasLeaveHistoryInterface = exports.userHasInventoryInterface = exports.userHasInventoryHistoryInterface = exports.userHasHomeWorkInterface = exports.userHasFileInterface = exports.userHasFeeTermsInterface = exports.userHasDeviceInterface = exports.userHasCourseInterface = exports.userHasBatchInterface = exports.userHasAnnouncementInterface = exports.userFeeTypeInterface = exports.userFeeTypeByAccountInterface = void 0;
|
|
39
|
+
exports.inventoryType = exports.inventoryHistoryType = exports.instituteType = exports.instituteSubscriptionPlanType = exports.instituteEntityTypeType = exports.instituteEntityType = exports.inquiryType = exports.informationSupportType = exports.homeWorkType = exports.holidayType = exports.greetingsType = exports.generateIdCardType = exports.floormanagementType = exports.fileStorageType = exports.feesCollectionType = exports.feedBackType = exports.feeTypeType = exports.feeTypeHasTermsType = exports.feeReminderTypeType = exports.feeReminderType = exports.feeReminderSettingType = exports.feeHistoryType = exports.feeHistoryDetailsType = exports.featureActionType = exports.facilityType = exports.examType = exports.examHasAnswerSheetType = exports.examGroupType = exports.eventType = exports.entityGroupType = exports.driverType = exports.dashboardManagementType = exports.dailyBookType = exports.courseType = exports.courseHasVisitorsType = exports.contactFeedBackType = exports.commonType = exports.coinPurchaseOfferType = exports.cloudStorageType = exports.classRoomType = exports.certificatesManagementType = exports.certificatesHistoryType = exports.categoriesType = exports.careerType = exports.bookAssessmentDateType = exports.blogType = exports.batchType = exports.batchSubjectProjectAssessmentType = exports.batchSubjectBookAssessmentType = exports.bannerType = void 0;
|
|
40
|
+
exports.userHasParentType = exports.userHasOffer = exports.userHasLeaveType = exports.userHasLeaveHistoryType = exports.userHasInventoryType = exports.userHasInventoryHistoryType = exports.userHasHomeWorkType = exports.userHasFileType = exports.userHasFeeTermsType = exports.userHasDeviceType = exports.userHasCourseType = exports.userHasBatchType = exports.userHasAnnouncementType = exports.userFeeTypeType = exports.userFeeTypeByAccountType = exports.userDetailsType = exports.userBookAssessmentType = exports.uniqueNumberCounterType = exports.typeManagementType = exports.tripType = exports.toDoType = exports.testimonialType = exports.taskManagementType = exports.syllabusType = exports.subscriptionPlanType = exports.subjectIndexType = exports.subjectHasPayFeeHistoryType = exports.subjectHasFeeType = exports.subCategoryType = exports.slotType = exports.sendNotificationType = exports.schoolOfferType = exports.schoolFeeType = exports.schoolFeeCollectionType = exports.rulesRegulationType = exports.roleType = exports.projectAssessmentOptionType = exports.productType = exports.plannerType = exports.photosGalleryType = exports.pdcHistoryType = exports.pdcChequeType = exports.paymentTermsType = exports.offerType = exports.moduleType = exports.moduleFeatureType = exports.masterLeaveType = exports.lectureType = exports.lectureHistoryType = exports.jobApply = void 0;
|
|
41
|
+
exports.jobApplyModel = exports.invoiceModel = exports.inquiryModel = exports.informationSupportModel = exports.holidayModel = exports.generateIdCardModel = exports.feedBackModel = exports.feeReminderTypeModel = exports.examModel = exports.examHasAnswerSheetModel = exports.examGroupModel = exports.eventModel = exports.dashboardManagementModel = exports.dailyBookModel = exports.columnModel = exports.certificatesManagementModel = exports.certificatesHistoryModel = exports.careerModel = exports.blogModel = exports.attendanceModel = exports.approvalRequestModel = exports.successMessages = exports.httpStatusCode = exports.errorMessages = exports.defaultModelAttributes = exports.app = exports.env = exports.aws = exports.workingShiftType = exports.workingDayType = exports.walletType = exports.walletTransactionType = exports.walletHistoryType = exports.videoAnalystType = exports.vendorType = exports.vehicleType = exports.userType = exports.userSchoolMetaType = exports.userRequiredStepsType = exports.userProjectAssessmentOptionType = exports.userPayoutType = exports.userPayoutHistoryType = exports.userPayoutDetailsType = exports.userMetaType = exports.userLeaveRequestType = exports.userInstituteMetaType = exports.userHasSubjectFeeType = exports.userHasStorageType = exports.userHasRollNumberType = exports.userHasRoleType = void 0;
|
|
42
|
+
exports.instituteEntityModel = exports.homeWorkModel = exports.greetingsModel = exports.floorManagementModel = exports.fileStorageModel = exports.feesCollectionModel = exports.feeTypeModel = exports.feeTypeHasTermsModel = exports.feeReminderSettingModel = exports.feeReminderModel = exports.feeHistoryModel = exports.feeHistoryDetailsModel = exports.featureActionModel = exports.facilityModel = exports.entityGroupModel = exports.driverModel = exports.courseModel = exports.courseHasVisitorsModel = exports.countryModel = exports.contactFeedBackModel = exports.coinPurchaseOfferModel = exports.cloudStorageModel = exports.classRoomModel = exports.cityModel = exports.categoriesModel = exports.bookAssessmentDateModel = exports.batchSubjectProjectAssessmentModel = exports.batchSubjectBookAssessmentModel = exports.batchModel = exports.bannerModel = exports.bankAccountDetailsModel = exports.areaModel = exports.announcementModel = exports.accountHasReceiptDetailsModel = exports.academicCalendarModel = exports.SubCategoriesModel = exports.walletTransactionModel = exports.videoAnalystModel = exports.userSchoolMetaModel = exports.userInstituteMetaModel = exports.userDoc = exports.userDetailsModel = exports.uniqueNumberCounterModel = exports.taskManagementModel = exports.subscriptionPlanModel = exports.subjectIndexModel = exports.schoolFeeModel = exports.replaceTeacherModel = exports.plannerModel = exports.photosGalleryModel = void 0;
|
|
43
|
+
exports.userHasRollNumberModel = exports.userHasRoleModel = exports.userHasParentModel = exports.userHasOfferModel = exports.userHasLeaveModel = exports.userHasLeaveHistoryModel = exports.userHasInventoryModel = exports.userHasInventoryHistoryModel = exports.userHasHomeWorkModel = exports.userHasFileModel = exports.userHasFeeTermsModel = exports.userHasDeviceModel = exports.userHasCourseModel = exports.userHasBatchModel = exports.userHasAnnouncementModel = exports.userFeeTypeModel = exports.userFeeTypeByAccountModel = exports.userBookAssessmentModel = exports.typeManagementModel = exports.tripModel = exports.tokenModel = exports.toDoModel = exports.testimonialModel = exports.syllabusModel = exports.subjectHasPayFeeHistoryModel = exports.subjectHasFeeModel = exports.stateModel = exports.slotModel = exports.sendNotificationModel = exports.schoolOfferModel = exports.schoolFeeCollectionModel = exports.rulesRegulationModel = exports.roleModel = exports.projectAssessmentOptionModel = exports.productModel = exports.pincodeModel = exports.pdcHistoryModel = exports.pdcChequeModel = exports.paymentTermsModel = exports.offerModel = exports.moduleModel = exports.moduleFeatureModel = exports.masterLeaveModel = exports.lectureModel = exports.lectureHistoryModel = exports.inventoryModel = exports.inventoryHistoryModel = exports.instituteSubscriptionPlanModel = exports.instituteModel = exports.instituteEntityTypeModel = void 0;
|
|
44
|
+
exports.workingShiftModel = exports.workingDayModel = exports.walletModel = exports.walletHistoryModel = exports.vendorManagementModel = exports.vehicleModel = exports.userRequiredStepsModel = exports.userProjectAssessmentOptionModel = exports.userPayoutModel = exports.userPayoutHistoryModel = exports.userPayoutDetailsModel = exports.userModel = exports.userLeaveRequestModel = exports.userHasSubjectFeeModel = exports.userHasStorageModel = void 0;
|
|
45
|
+
exports.academicCalendarInterface = __importStar(require("./interfaces/academicCalendarInterface"));
|
|
46
|
+
exports.accountHasReceiptDetailsInterface = __importStar(require("./interfaces/accountHasReceiptDetailsInterface"));
|
|
47
|
+
exports.announcementInterface = __importStar(require("./interfaces/announcementInterface"));
|
|
48
|
+
exports.approvalRequestInterface = __importStar(require("./interfaces/approvalRequestInterface"));
|
|
49
|
+
exports.areaInterface = __importStar(require("./interfaces/areaInterface"));
|
|
50
|
+
exports.attendanceInterface = __importStar(require("./interfaces/attendanceInterface"));
|
|
51
|
+
exports.bankAccountDetailsInterface = __importStar(require("./interfaces/bankAccountDetailsInterface"));
|
|
52
|
+
exports.bannerInterface = __importStar(require("./interfaces/bannerInterface"));
|
|
53
|
+
exports.batchInterface = __importStar(require("./interfaces/batchInterface"));
|
|
54
|
+
exports.batchSubjectBookAssessmentInterface = __importStar(require("./interfaces/batchSubjectBookAssessmentInterface"));
|
|
55
|
+
exports.batchSubjectProjectAssessmentInterface = __importStar(require("./interfaces/batchSubjectProjectAssessmentInterface"));
|
|
56
|
+
exports.blogInterface = __importStar(require("./interfaces/blogInterface"));
|
|
57
|
+
exports.bookAssessmentDateInterface = __importStar(require("./interfaces/bookAssessmentDateInterface"));
|
|
58
|
+
exports.careerInterface = __importStar(require("./interfaces/careerInterface"));
|
|
59
|
+
exports.categoriesInterface = __importStar(require("./interfaces/categoriesInterface"));
|
|
60
|
+
exports.certificatesHistoryInterface = __importStar(require("./interfaces/certificatesHistoryInterface"));
|
|
61
|
+
exports.certificatesManagementInterface = __importStar(require("./interfaces/certificatesManagementInterface"));
|
|
62
|
+
exports.cityInterface = __importStar(require("./interfaces/cityInterface"));
|
|
63
|
+
exports.classRoomInterface = __importStar(require("./interfaces/classRoomInterface"));
|
|
64
|
+
exports.cloudStorageInterface = __importStar(require("./interfaces/cloudStorageInterface"));
|
|
65
|
+
exports.coinPurchaseOfferInterface = __importStar(require("./interfaces/coinPurchaseOfferInterface"));
|
|
66
|
+
exports.columnInterface = __importStar(require("./interfaces/columnInterface"));
|
|
67
|
+
exports.commanInterface = __importStar(require("./interfaces/commanInterface"));
|
|
68
|
+
exports.contactFeedBackInterface = __importStar(require("./interfaces/contactFeedBackInterface"));
|
|
69
|
+
exports.countryInterface = __importStar(require("./interfaces/countryInterface"));
|
|
70
|
+
exports.courseHasVisitorsInterface = __importStar(require("./interfaces/courseHasVisitorsInterface"));
|
|
71
|
+
exports.courseInterface = __importStar(require("./interfaces/courseInterface"));
|
|
72
|
+
exports.dailyBookInterface = __importStar(require("./interfaces/dailyBookInterface"));
|
|
73
|
+
exports.dashboardManagementInterface = __importStar(require("./interfaces/dashboardManagementInterface"));
|
|
74
|
+
exports.driverInterface = __importStar(require("./interfaces/driverInterface"));
|
|
75
|
+
exports.entityGroupInterface = __importStar(require("./interfaces/entityGroupInterface"));
|
|
76
|
+
exports.eventInterface = __importStar(require("./interfaces/eventInterface"));
|
|
77
|
+
exports.examGroupInterface = __importStar(require("./interfaces/examGroupInterface"));
|
|
78
|
+
exports.examHasAnswerSheetInterface = __importStar(require("./interfaces/examHasAnswerSheetInterface"));
|
|
79
|
+
exports.examInterface = __importStar(require("./interfaces/examInterface"));
|
|
80
|
+
exports.facilityInterface = __importStar(require("./interfaces/facilityInterface"));
|
|
81
|
+
exports.featureActionInterface = __importStar(require("./interfaces/featureActionInterface"));
|
|
82
|
+
exports.feeHistoryDetailsInterface = __importStar(require("./interfaces/feeHistoryDetailsInterface"));
|
|
83
|
+
exports.feeHistoryInterface = __importStar(require("./interfaces/feeHistoryInterface"));
|
|
84
|
+
exports.feeReminderInterface = __importStar(require("./interfaces/feeReminderInterface"));
|
|
85
|
+
exports.feeReminderSettingInterface = __importStar(require("./interfaces/feeReminderSettingInterface"));
|
|
86
|
+
exports.feeReminderTypeInterface = __importStar(require("./interfaces/feeReminderTypeInterface"));
|
|
87
|
+
exports.feeTypeHasTermsInterface = __importStar(require("./interfaces/feeTypeHasTermsInterface"));
|
|
88
|
+
exports.feeTypeInterface = __importStar(require("./interfaces/feeTypeInterface"));
|
|
89
|
+
exports.feedBackInterface = __importStar(require("./interfaces/feedBackInterface"));
|
|
90
|
+
exports.feesCollectionInterface = __importStar(require("./interfaces/feesCollectionInterface"));
|
|
91
|
+
exports.fileStorageInterface = __importStar(require("./interfaces/fileStorageInterface"));
|
|
92
|
+
exports.floorManagementInterface = __importStar(require("./interfaces/floorManagementInterface"));
|
|
93
|
+
exports.generateIdCardInterface = __importStar(require("./interfaces/generateIdCardInterface"));
|
|
94
|
+
exports.greetingsInterface = __importStar(require("./interfaces/greetingsInterface"));
|
|
95
|
+
exports.holidayInterface = __importStar(require("./interfaces/holidayInterface"));
|
|
96
|
+
exports.homeworkInterface = __importStar(require("./interfaces/homeworkInterface"));
|
|
97
|
+
exports.informationSupportInterface = __importStar(require("./interfaces/informationSupportInterface"));
|
|
98
|
+
exports.inquiryInterface = __importStar(require("./interfaces/inquiryInterface"));
|
|
99
|
+
exports.instituteEntityInterface = __importStar(require("./interfaces/instituteEntityInterface"));
|
|
100
|
+
exports.instituteEntityTypeInterface = __importStar(require("./interfaces/instituteEntityTypeInterface"));
|
|
101
|
+
exports.instituteInterface = __importStar(require("./interfaces/instituteInterface"));
|
|
102
|
+
exports.instituteSubscriptionPlanInterface = __importStar(require("./interfaces/instituteSubscriptionPlanInterface"));
|
|
103
|
+
exports.inventoryHistoryInterface = __importStar(require("./interfaces/inventoryHistoryInterface"));
|
|
104
|
+
exports.inventoryInterface = __importStar(require("./interfaces/inventoryInterface"));
|
|
105
|
+
exports.invoiceInterface = __importStar(require("./interfaces/invoiceInterface"));
|
|
106
|
+
exports.jobApplyInterface = __importStar(require("./interfaces/jobApplyInterface"));
|
|
107
|
+
exports.lectureHistoryInterface = __importStar(require("./interfaces/lectureHistoryInterface"));
|
|
108
|
+
exports.lectureInterface = __importStar(require("./interfaces/lectureInterface"));
|
|
109
|
+
exports.masterLeaveInterface = __importStar(require("./interfaces/masterLeaveInterface"));
|
|
110
|
+
exports.moduleFeatureInterface = __importStar(require("./interfaces/moduleFeatureInterface"));
|
|
111
|
+
exports.moduleInterface = __importStar(require("./interfaces/moduleInterface"));
|
|
112
|
+
exports.offersInterface = __importStar(require("./interfaces/offersInterface"));
|
|
113
|
+
exports.paymentTermsInterface = __importStar(require("./interfaces/paymentTermsInterface"));
|
|
114
|
+
exports.pdcChequeInterface = __importStar(require("./interfaces/pdcChequeInterface"));
|
|
115
|
+
exports.pdcHistoryInterface = __importStar(require("./interfaces/pdcHistoryInterface"));
|
|
116
|
+
exports.photosGalleryInterface = __importStar(require("./interfaces/photosGalleryInterface"));
|
|
117
|
+
exports.pincodeInterface = __importStar(require("./interfaces/pincodeInterface"));
|
|
118
|
+
exports.plannerInterface = __importStar(require("./interfaces/plannerInterface"));
|
|
119
|
+
exports.productInterface = __importStar(require("./interfaces/productInterface"));
|
|
120
|
+
exports.projectAssessmentOptionInterface = __importStar(require("./interfaces/projectAssessmentOptionInterface"));
|
|
121
|
+
exports.replaceTeacherInterface = __importStar(require("./interfaces/replaceTeacherInterface"));
|
|
122
|
+
exports.roleInterface = __importStar(require("./interfaces/roleInterface"));
|
|
123
|
+
exports.rulesRegulationInterface = __importStar(require("./interfaces/rulesRegulationInterface"));
|
|
124
|
+
exports.schoolFeeCollectionInterface = __importStar(require("./interfaces/schoolFeeCollectionInterface"));
|
|
125
|
+
exports.schoolFeeInterface = __importStar(require("./interfaces/schoolFeeInterface"));
|
|
126
|
+
exports.schoolOfferInterface = __importStar(require("./interfaces/schoolOfferInterface"));
|
|
127
|
+
exports.sendNotificationInerface = __importStar(require("./interfaces/sendNotificationInerface"));
|
|
128
|
+
exports.slotInterface = __importStar(require("./interfaces/slotInterface"));
|
|
129
|
+
exports.stateInterface = __importStar(require("./interfaces/stateInterface"));
|
|
130
|
+
exports.subCategoriesInterface = __importStar(require("./interfaces/subCategoriesInterface"));
|
|
131
|
+
exports.subjectHasFeeInterface = __importStar(require("./interfaces/subjectHasFeeInterface"));
|
|
132
|
+
exports.subjectHasPayFeeHistoryInterface = __importStar(require("./interfaces/subjectHasPayFeeHistoryInterface"));
|
|
133
|
+
exports.subjectIndexInterface = __importStar(require("./interfaces/subjectIndexInterface"));
|
|
134
|
+
exports.subscriptionPlanInterface = __importStar(require("./interfaces/subscriptionPlanInterface"));
|
|
135
|
+
exports.syllabusInterface = __importStar(require("./interfaces/syllabusInterface"));
|
|
136
|
+
exports.taskManagementInterface = __importStar(require("./interfaces/taskManagementInterface"));
|
|
137
|
+
exports.testimonialInterface = __importStar(require("./interfaces/testimonialInterface"));
|
|
138
|
+
exports.toDoInterface = __importStar(require("./interfaces/toDoInterface"));
|
|
139
|
+
exports.tokenInterface = __importStar(require("./interfaces/tokenInterface"));
|
|
140
|
+
exports.tripInterface = __importStar(require("./interfaces/tripInterface"));
|
|
141
|
+
exports.typeManagementInterface = __importStar(require("./interfaces/typeManagementInterface"));
|
|
142
|
+
exports.uniqueNumberCounterInterface = __importStar(require("./interfaces/uniqueNumberCounterInterface"));
|
|
143
|
+
exports.userBookAssessmentInterface = __importStar(require("./interfaces/userBookAssessmentInterface"));
|
|
144
|
+
exports.userDetailsInterface = __importStar(require("./interfaces/userDetailsInterface"));
|
|
145
|
+
exports.userFeeTypeByAccountInterface = __importStar(require("./interfaces/userFeeTypeByAccountInterface"));
|
|
146
|
+
exports.userFeeTypeInterface = __importStar(require("./interfaces/userFeeTypeInterface"));
|
|
147
|
+
exports.userHasAnnouncementInterface = __importStar(require("./interfaces/userHasAnnouncementInterface"));
|
|
148
|
+
exports.userHasBatchInterface = __importStar(require("./interfaces/userHasBatchInterface"));
|
|
149
|
+
exports.userHasCourseInterface = __importStar(require("./interfaces/userHasCourseInterface"));
|
|
150
|
+
exports.userHasDeviceInterface = __importStar(require("./interfaces/userHasDeviceInterface"));
|
|
151
|
+
exports.userHasFeeTermsInterface = __importStar(require("./interfaces/userHasFeeTermsInterface"));
|
|
152
|
+
exports.userHasFileInterface = __importStar(require("./interfaces/userHasFileInterface"));
|
|
153
|
+
exports.userHasHomeWorkInterface = __importStar(require("./interfaces/userHasHomeWorkInterface"));
|
|
154
|
+
exports.userHasInventoryHistoryInterface = __importStar(require("./interfaces/userHasInventoryHistoryInterface"));
|
|
155
|
+
exports.userHasInventoryInterface = __importStar(require("./interfaces/userHasInventoryInterface"));
|
|
156
|
+
exports.userHasLeaveHistoryInterface = __importStar(require("./interfaces/userHasLeaveHistoryInterface"));
|
|
157
|
+
exports.userHasLeaveInterface = __importStar(require("./interfaces/userHasLeaveInterface"));
|
|
158
|
+
exports.userHasOfferInterface = __importStar(require("./interfaces/userHasOfferInterface"));
|
|
159
|
+
exports.userHasParentInterface = __importStar(require("./interfaces/userHasParentInterface"));
|
|
160
|
+
exports.userHasRoleInterface = __importStar(require("./interfaces/userHasRoleInterface"));
|
|
161
|
+
exports.userHasRollNumberInterface = __importStar(require("./interfaces/userHasRollNumberInterface"));
|
|
162
|
+
exports.userHasStorageInterface = __importStar(require("./interfaces/userHasStorageInterface"));
|
|
163
|
+
exports.userHasSubjectFeeInterface = __importStar(require("./interfaces/userHasSubjectFeeInterface"));
|
|
164
|
+
exports.userInstituteMetaInterface = __importStar(require("./interfaces/userInstituteMetaInterface"));
|
|
165
|
+
exports.userInterface = __importStar(require("./interfaces/userInterface"));
|
|
166
|
+
exports.userLeaveRequestInterface = __importStar(require("./interfaces/userLeaveRequestInterface"));
|
|
167
|
+
exports.userMetaInterface = __importStar(require("./interfaces/userMetaInterface"));
|
|
168
|
+
exports.userPayoutDetailsInterface = __importStar(require("./interfaces/userPayoutDetailsInterface"));
|
|
169
|
+
exports.userPayoutHistoryInterface = __importStar(require("./interfaces/userPayoutHistoryInterface"));
|
|
170
|
+
exports.userPayoutInterface = __importStar(require("./interfaces/userPayoutInterface"));
|
|
171
|
+
exports.userProjectAssessmentOptionInterface = __importStar(require("./interfaces/userProjectAssessmentOptionInterface"));
|
|
172
|
+
exports.userRequiredStepsInterface = __importStar(require("./interfaces/userRequiredStepsInterface"));
|
|
173
|
+
exports.userSchoolMetaInterface = __importStar(require("./interfaces/userSchoolMetaInterface"));
|
|
174
|
+
exports.vehicleInterface = __importStar(require("./interfaces/vehicleInterface"));
|
|
175
|
+
exports.vendorManagementInterface = __importStar(require("./interfaces/vendorManagementInterface"));
|
|
176
|
+
exports.videoAnalystInterface = __importStar(require("./interfaces/videoAnalystInterface"));
|
|
177
|
+
exports.walletHistoryInterface = __importStar(require("./interfaces/walletHistoryInterface"));
|
|
178
|
+
exports.walletInterface = __importStar(require("./interfaces/walletInterface"));
|
|
179
|
+
exports.walletTransactionInterface = __importStar(require("./interfaces/walletTransactionInterface"));
|
|
180
|
+
exports.workingDayInterface = __importStar(require("./interfaces/workingDayInterface"));
|
|
181
|
+
exports.workingShiftInterface = __importStar(require("./interfaces/workingShiftInterface"));
|
|
182
|
+
exports.s3Uploader = __importStar(require("./helpers/s3Uploader"));
|
|
183
|
+
exports.utils = __importStar(require("./helpers/utils"));
|
|
184
|
+
exports.mongooseCommonService = __importStar(require("./services/Concrete/mongooseCommonService"));
|
|
185
|
+
exports.sequelizeCommanService = __importStar(require("./services/Concrete/sequelizeCommanService"));
|
|
186
|
+
exports.IMongooseCommonService = __importStar(require("./services/Contracts/IMongooseCommonService"));
|
|
187
|
+
exports.ISequelizeCommonService = __importStar(require("./services/Contracts/ISequelizeCommonService"));
|
|
188
|
+
exports.academicCalendarType = __importStar(require("./types/academicCalendarType"));
|
|
189
|
+
exports.accountHasReceiptDetailsType = __importStar(require("./types/accountHasReceiptDetailsType"));
|
|
190
|
+
exports.announcementType = __importStar(require("./types/announcementType"));
|
|
191
|
+
exports.approveRequestType = __importStar(require("./types/approveRequestType"));
|
|
192
|
+
exports.areaType = __importStar(require("./types/areaType"));
|
|
193
|
+
exports.attendanceType = __importStar(require("./types/attendanceType"));
|
|
194
|
+
exports.bankAccountDetailsType = __importStar(require("./types/bankAccountDetailsType"));
|
|
195
|
+
exports.bannerType = __importStar(require("./types/bannerType"));
|
|
196
|
+
exports.batchSubjectBookAssessmentType = __importStar(require("./types/batchSubjectBookAssessmentType"));
|
|
197
|
+
exports.batchSubjectProjectAssessmentType = __importStar(require("./types/batchSubjectProjectAssessmentType"));
|
|
198
|
+
exports.batchType = __importStar(require("./types/batchType"));
|
|
199
|
+
exports.blogType = __importStar(require("./types/blogType"));
|
|
200
|
+
exports.bookAssessmentDateType = __importStar(require("./types/bookAssessmentDateType"));
|
|
201
|
+
exports.careerType = __importStar(require("./types/careerType"));
|
|
202
|
+
exports.categoriesType = __importStar(require("./types/categoriesType"));
|
|
203
|
+
exports.certificatesHistoryType = __importStar(require("./types/certificatesHistoryType"));
|
|
204
|
+
exports.certificatesManagementType = __importStar(require("./types/certificatesManagementType"));
|
|
205
|
+
exports.classRoomType = __importStar(require("./types/classRoomType"));
|
|
206
|
+
exports.cloudStorageType = __importStar(require("./types/cloudStorageType"));
|
|
207
|
+
exports.coinPurchaseOfferType = __importStar(require("./types/coinPurchaseOfferType"));
|
|
208
|
+
exports.commonType = __importStar(require("./types/commonType"));
|
|
209
|
+
exports.contactFeedBackType = __importStar(require("./types/contactFeedBackType"));
|
|
210
|
+
exports.courseHasVisitorsType = __importStar(require("./types/courseHasVisitorsType"));
|
|
211
|
+
exports.courseType = __importStar(require("./types/courseType"));
|
|
212
|
+
exports.dailyBookType = __importStar(require("./types/dailyBookType"));
|
|
213
|
+
exports.dashboardManagementType = __importStar(require("./types/dashboardManagementType"));
|
|
214
|
+
exports.driverType = __importStar(require("./types/driverType"));
|
|
215
|
+
exports.entityGroupType = __importStar(require("./types/entityGroupType"));
|
|
216
|
+
exports.eventType = __importStar(require("./types/eventType"));
|
|
217
|
+
exports.examGroupType = __importStar(require("./types/examGroupType"));
|
|
218
|
+
exports.examHasAnswerSheetType = __importStar(require("./types/examHasAnswerSheetType"));
|
|
219
|
+
exports.examType = __importStar(require("./types/examType"));
|
|
220
|
+
exports.facilityType = __importStar(require("./types/facilityType"));
|
|
221
|
+
exports.featureActionType = __importStar(require("./types/featureActionType"));
|
|
222
|
+
exports.feeHistoryDetailsType = __importStar(require("./types/feeHistoryDetailsType"));
|
|
223
|
+
exports.feeHistoryType = __importStar(require("./types/feeHistoryType"));
|
|
224
|
+
exports.feeReminderSettingType = __importStar(require("./types/feeReminderSettingType"));
|
|
225
|
+
exports.feeReminderType = __importStar(require("./types/feeReminderType"));
|
|
226
|
+
exports.feeReminderTypeType = __importStar(require("./types/feeReminderTypeType"));
|
|
227
|
+
exports.feeTypeHasTermsType = __importStar(require("./types/feeTypeHasTermsType"));
|
|
228
|
+
exports.feeTypeType = __importStar(require("./types/feeTypeType"));
|
|
229
|
+
exports.feedBackType = __importStar(require("./types/feedBackType"));
|
|
230
|
+
exports.feesCollectionType = __importStar(require("./types/feesCollectionType"));
|
|
231
|
+
exports.fileStorageType = __importStar(require("./types/fileStorageType"));
|
|
232
|
+
exports.floormanagementType = __importStar(require("./types/floormanagementType"));
|
|
233
|
+
exports.generateIdCardType = __importStar(require("./types/generateIdCardType"));
|
|
234
|
+
exports.greetingsType = __importStar(require("./types/greetingsType"));
|
|
235
|
+
exports.holidayType = __importStar(require("./types/holidayType"));
|
|
236
|
+
exports.homeWorkType = __importStar(require("./types/homeWorkType"));
|
|
237
|
+
exports.informationSupportType = __importStar(require("./types/informationSupportType"));
|
|
238
|
+
exports.inquiryType = __importStar(require("./types/inquiryType"));
|
|
239
|
+
exports.instituteEntityType = __importStar(require("./types/instituteEntityType"));
|
|
240
|
+
exports.instituteEntityTypeType = __importStar(require("./types/instituteEntityTypeType"));
|
|
241
|
+
exports.instituteSubscriptionPlanType = __importStar(require("./types/instituteSubscriptionPlanType"));
|
|
242
|
+
exports.instituteType = __importStar(require("./types/instituteType"));
|
|
243
|
+
exports.inventoryHistoryType = __importStar(require("./types/inventoryHistoryType"));
|
|
244
|
+
exports.inventoryType = __importStar(require("./types/inventoryType"));
|
|
245
|
+
exports.jobApply = __importStar(require("./types/jobApply"));
|
|
246
|
+
exports.lectureHistoryType = __importStar(require("./types/lectureHistoryType"));
|
|
247
|
+
exports.lectureType = __importStar(require("./types/lectureType"));
|
|
248
|
+
exports.masterLeaveType = __importStar(require("./types/masterLeaveType"));
|
|
249
|
+
exports.moduleFeatureType = __importStar(require("./types/moduleFeatureType"));
|
|
250
|
+
exports.moduleType = __importStar(require("./types/moduleType"));
|
|
251
|
+
exports.offerType = __importStar(require("./types/offerType"));
|
|
252
|
+
exports.paymentTermsType = __importStar(require("./types/paymentTermsType"));
|
|
253
|
+
exports.pdcChequeType = __importStar(require("./types/pdcChequeType"));
|
|
254
|
+
exports.pdcHistoryType = __importStar(require("./types/pdcHistoryType"));
|
|
255
|
+
exports.photosGalleryType = __importStar(require("./types/photosGalleryType"));
|
|
256
|
+
exports.plannerType = __importStar(require("./types/plannerType"));
|
|
257
|
+
exports.productType = __importStar(require("./types/productType"));
|
|
258
|
+
exports.projectAssessmentOptionType = __importStar(require("./types/projectAssessmentOptionType"));
|
|
259
|
+
exports.roleType = __importStar(require("./types/roleType"));
|
|
260
|
+
exports.rulesRegulationType = __importStar(require("./types/rulesRegulationType"));
|
|
261
|
+
exports.schoolFeeCollectionType = __importStar(require("./types/schoolFeeCollectionType"));
|
|
262
|
+
exports.schoolFeeType = __importStar(require("./types/schoolFeeType"));
|
|
263
|
+
exports.schoolOfferType = __importStar(require("./types/schoolOfferType"));
|
|
264
|
+
exports.sendNotificationType = __importStar(require("./types/sendNotificationType"));
|
|
265
|
+
exports.slotType = __importStar(require("./types/slotType"));
|
|
266
|
+
exports.subCategoryType = __importStar(require("./types/subCategoryType"));
|
|
267
|
+
exports.subjectHasFeeType = __importStar(require("./types/subjectHasFeeType"));
|
|
268
|
+
exports.subjectHasPayFeeHistoryType = __importStar(require("./types/subjectHasPayFeeHistoryType"));
|
|
269
|
+
exports.subjectIndexType = __importStar(require("./types/subjectIndexType"));
|
|
270
|
+
exports.subscriptionPlanType = __importStar(require("./types/subscriptionPlanType"));
|
|
271
|
+
exports.syllabusType = __importStar(require("./types/syllabusType"));
|
|
272
|
+
exports.taskManagementType = __importStar(require("./types/taskManagementType"));
|
|
273
|
+
exports.testimonialType = __importStar(require("./types/testimonialType"));
|
|
274
|
+
exports.toDoType = __importStar(require("./types/toDoType"));
|
|
275
|
+
exports.tripType = __importStar(require("./types/tripType"));
|
|
276
|
+
exports.typeManagementType = __importStar(require("./types/typeManagementType"));
|
|
277
|
+
exports.uniqueNumberCounterType = __importStar(require("./types/uniqueNumberCounterType"));
|
|
278
|
+
exports.userBookAssessmentType = __importStar(require("./types/userBookAssessmentType"));
|
|
279
|
+
exports.userDetailsType = __importStar(require("./types/userDetailsType"));
|
|
280
|
+
exports.userFeeTypeByAccountType = __importStar(require("./types/userFeeTypeByAccountType"));
|
|
281
|
+
exports.userFeeTypeType = __importStar(require("./types/userFeeTypeType"));
|
|
282
|
+
exports.userHasAnnouncementType = __importStar(require("./types/userHasAnnouncementType"));
|
|
283
|
+
exports.userHasBatchType = __importStar(require("./types/userHasBatchType"));
|
|
284
|
+
exports.userHasCourseType = __importStar(require("./types/userHasCourseType"));
|
|
285
|
+
exports.userHasDeviceType = __importStar(require("./types/userHasDeviceType"));
|
|
286
|
+
exports.userHasFeeTermsType = __importStar(require("./types/userHasFeeTermsType"));
|
|
287
|
+
exports.userHasFileType = __importStar(require("./types/userHasFileType"));
|
|
288
|
+
exports.userHasHomeWorkType = __importStar(require("./types/userHasHomeWorkType"));
|
|
289
|
+
exports.userHasInventoryHistoryType = __importStar(require("./types/userHasInventoryHistoryType"));
|
|
290
|
+
exports.userHasInventoryType = __importStar(require("./types/userHasInventoryType"));
|
|
291
|
+
exports.userHasLeaveHistoryType = __importStar(require("./types/userHasLeaveHistoryType"));
|
|
292
|
+
exports.userHasLeaveType = __importStar(require("./types/userHasLeaveType"));
|
|
293
|
+
exports.userHasOffer = __importStar(require("./types/userHasOffer"));
|
|
294
|
+
exports.userHasParentType = __importStar(require("./types/userHasParentType"));
|
|
295
|
+
exports.userHasRoleType = __importStar(require("./types/userHasRoleType"));
|
|
296
|
+
exports.userHasRollNumberType = __importStar(require("./types/userHasRollNumberType"));
|
|
297
|
+
exports.userHasStorageType = __importStar(require("./types/userHasStorageType"));
|
|
298
|
+
exports.userHasSubjectFeeType = __importStar(require("./types/userHasSubjectFeeType"));
|
|
299
|
+
exports.userInstituteMetaType = __importStar(require("./types/userInstituteMetaType"));
|
|
300
|
+
exports.userLeaveRequestType = __importStar(require("./types/userLeaveRequestType"));
|
|
301
|
+
exports.userMetaType = __importStar(require("./types/userMetaType"));
|
|
302
|
+
exports.userPayoutDetailsType = __importStar(require("./types/userPayoutDetailsType"));
|
|
303
|
+
exports.userPayoutHistoryType = __importStar(require("./types/userPayoutHistoryType"));
|
|
304
|
+
exports.userPayoutType = __importStar(require("./types/userPayoutType"));
|
|
305
|
+
exports.userProjectAssessmentOptionType = __importStar(require("./types/userProjectAssessmentOptionType"));
|
|
306
|
+
exports.userRequiredStepsType = __importStar(require("./types/userRequiredStepsType"));
|
|
307
|
+
exports.userSchoolMetaType = __importStar(require("./types/userSchoolMetaType"));
|
|
308
|
+
exports.userType = __importStar(require("./types/userType"));
|
|
309
|
+
exports.vehicleType = __importStar(require("./types/vehicleType"));
|
|
310
|
+
exports.vendorType = __importStar(require("./types/vendorType"));
|
|
311
|
+
exports.videoAnalystType = __importStar(require("./types/videoAnalystType"));
|
|
312
|
+
exports.walletHistoryType = __importStar(require("./types/walletHistoryType"));
|
|
313
|
+
exports.walletTransactionType = __importStar(require("./types/walletTransactionType"));
|
|
314
|
+
exports.walletType = __importStar(require("./types/walletType"));
|
|
315
|
+
exports.workingDayType = __importStar(require("./types/workingDayType"));
|
|
316
|
+
exports.workingShiftType = __importStar(require("./types/workingShiftType"));
|
|
317
|
+
exports.aws = __importStar(require("./configs/aws"));
|
|
318
|
+
exports.env = __importStar(require("./configs/env"));
|
|
319
|
+
exports.app = __importStar(require("./constants/app"));
|
|
320
|
+
exports.defaultModelAttributes = __importStar(require("./constants/defaultModelAttributes"));
|
|
321
|
+
exports.errorMessages = __importStar(require("./constants/errorMessages"));
|
|
322
|
+
exports.httpStatusCode = __importStar(require("./constants/httpStatusCode"));
|
|
323
|
+
exports.successMessages = __importStar(require("./constants/successMessages"));
|
|
324
|
+
exports.approvalRequestModel = __importStar(require("./models/mongodb/approvalRequestModel"));
|
|
325
|
+
exports.attendanceModel = __importStar(require("./models/mongodb/attendanceModel"));
|
|
326
|
+
exports.blogModel = __importStar(require("./models/mongodb/blogModel"));
|
|
327
|
+
exports.careerModel = __importStar(require("./models/mongodb/careerModel"));
|
|
328
|
+
exports.certificatesHistoryModel = __importStar(require("./models/mongodb/certificatesHistoryModel"));
|
|
329
|
+
exports.certificatesManagementModel = __importStar(require("./models/mongodb/certificatesManagementModel"));
|
|
330
|
+
exports.columnModel = __importStar(require("./models/mongodb/columnModel"));
|
|
331
|
+
exports.dailyBookModel = __importStar(require("./models/mongodb/dailyBookModel"));
|
|
332
|
+
exports.dashboardManagementModel = __importStar(require("./models/mongodb/dashboardManagementModel"));
|
|
333
|
+
exports.eventModel = __importStar(require("./models/mongodb/eventModel"));
|
|
334
|
+
exports.examGroupModel = __importStar(require("./models/mongodb/examGroupModel"));
|
|
335
|
+
exports.examHasAnswerSheetModel = __importStar(require("./models/mongodb/examHasAnswerSheetModel"));
|
|
336
|
+
exports.examModel = __importStar(require("./models/mongodb/examModel"));
|
|
337
|
+
exports.feeReminderTypeModel = __importStar(require("./models/mongodb/feeReminderTypeModel"));
|
|
338
|
+
exports.feedBackModel = __importStar(require("./models/mongodb/feedBackModel"));
|
|
339
|
+
exports.generateIdCardModel = __importStar(require("./models/mongodb/generateIdCardModel"));
|
|
340
|
+
exports.holidayModel = __importStar(require("./models/mongodb/holidayModel"));
|
|
341
|
+
exports.informationSupportModel = __importStar(require("./models/mongodb/informationSupportModel"));
|
|
342
|
+
exports.inquiryModel = __importStar(require("./models/mongodb/inquiryModel"));
|
|
343
|
+
exports.invoiceModel = __importStar(require("./models/mongodb/invoiceModel"));
|
|
344
|
+
exports.jobApplyModel = __importStar(require("./models/mongodb/jobApplyModel"));
|
|
345
|
+
exports.photosGalleryModel = __importStar(require("./models/mongodb/photosGalleryModel"));
|
|
346
|
+
exports.plannerModel = __importStar(require("./models/mongodb/plannerModel"));
|
|
347
|
+
exports.replaceTeacherModel = __importStar(require("./models/mongodb/replaceTeacherModel"));
|
|
348
|
+
exports.schoolFeeModel = __importStar(require("./models/mongodb/schoolFeeModel"));
|
|
349
|
+
exports.subjectIndexModel = __importStar(require("./models/mongodb/subjectIndexModel"));
|
|
350
|
+
exports.subscriptionPlanModel = __importStar(require("./models/mongodb/subscriptionPlanModel"));
|
|
351
|
+
exports.taskManagementModel = __importStar(require("./models/mongodb/taskManagementModel"));
|
|
352
|
+
exports.uniqueNumberCounterModel = __importStar(require("./models/mongodb/uniqueNumberCounterModel"));
|
|
353
|
+
exports.userDetailsModel = __importStar(require("./models/mongodb/userDetailsModel"));
|
|
354
|
+
exports.userDoc = __importStar(require("./models/mongodb/userDoc"));
|
|
355
|
+
exports.userInstituteMetaModel = __importStar(require("./models/mongodb/userInstituteMetaModel"));
|
|
356
|
+
exports.userSchoolMetaModel = __importStar(require("./models/mongodb/userSchoolMetaModel"));
|
|
357
|
+
exports.videoAnalystModel = __importStar(require("./models/mongodb/videoAnalystModel"));
|
|
358
|
+
exports.walletTransactionModel = __importStar(require("./models/mongodb/walletTransactionModel"));
|
|
359
|
+
exports.SubCategoriesModel = __importStar(require("./models/psql/SubCategoriesModel"));
|
|
360
|
+
exports.academicCalendarModel = __importStar(require("./models/psql/academicCalendarModel"));
|
|
361
|
+
exports.accountHasReceiptDetailsModel = __importStar(require("./models/psql/accountHasReceiptDetailsModel"));
|
|
362
|
+
exports.announcementModel = __importStar(require("./models/psql/announcementModel"));
|
|
363
|
+
exports.areaModel = __importStar(require("./models/psql/areaModel"));
|
|
364
|
+
exports.bankAccountDetailsModel = __importStar(require("./models/psql/bankAccountDetailsModel"));
|
|
365
|
+
exports.bannerModel = __importStar(require("./models/psql/bannerModel"));
|
|
366
|
+
exports.batchModel = __importStar(require("./models/psql/batchModel"));
|
|
367
|
+
exports.batchSubjectBookAssessmentModel = __importStar(require("./models/psql/batchSubjectBookAssessmentModel"));
|
|
368
|
+
exports.batchSubjectProjectAssessmentModel = __importStar(require("./models/psql/batchSubjectProjectAssessmentModel"));
|
|
369
|
+
exports.bookAssessmentDateModel = __importStar(require("./models/psql/bookAssessmentDateModel"));
|
|
370
|
+
exports.categoriesModel = __importStar(require("./models/psql/categoriesModel"));
|
|
371
|
+
exports.cityModel = __importStar(require("./models/psql/cityModel"));
|
|
372
|
+
exports.classRoomModel = __importStar(require("./models/psql/classRoomModel"));
|
|
373
|
+
exports.cloudStorageModel = __importStar(require("./models/psql/cloudStorageModel"));
|
|
374
|
+
exports.coinPurchaseOfferModel = __importStar(require("./models/psql/coinPurchaseOfferModel"));
|
|
375
|
+
exports.contactFeedBackModel = __importStar(require("./models/psql/contactFeedBackModel"));
|
|
376
|
+
exports.countryModel = __importStar(require("./models/psql/countryModel"));
|
|
377
|
+
exports.courseHasVisitorsModel = __importStar(require("./models/psql/courseHasVisitorsModel"));
|
|
378
|
+
exports.courseModel = __importStar(require("./models/psql/courseModel"));
|
|
379
|
+
exports.driverModel = __importStar(require("./models/psql/driverModel"));
|
|
380
|
+
exports.entityGroupModel = __importStar(require("./models/psql/entityGroupModel"));
|
|
381
|
+
exports.facilityModel = __importStar(require("./models/psql/facilityModel"));
|
|
382
|
+
exports.featureActionModel = __importStar(require("./models/psql/featureActionModel"));
|
|
383
|
+
exports.feeHistoryDetailsModel = __importStar(require("./models/psql/feeHistoryDetailsModel"));
|
|
384
|
+
exports.feeHistoryModel = __importStar(require("./models/psql/feeHistoryModel"));
|
|
385
|
+
exports.feeReminderModel = __importStar(require("./models/psql/feeReminderModel"));
|
|
386
|
+
exports.feeReminderSettingModel = __importStar(require("./models/psql/feeReminderSettingModel"));
|
|
387
|
+
exports.feeTypeHasTermsModel = __importStar(require("./models/psql/feeTypeHasTermsModel"));
|
|
388
|
+
exports.feeTypeModel = __importStar(require("./models/psql/feeTypeModel"));
|
|
389
|
+
exports.feesCollectionModel = __importStar(require("./models/psql/feesCollectionModel"));
|
|
390
|
+
exports.fileStorageModel = __importStar(require("./models/psql/fileStorageModel"));
|
|
391
|
+
exports.floorManagementModel = __importStar(require("./models/psql/floorManagementModel"));
|
|
392
|
+
exports.greetingsModel = __importStar(require("./models/psql/greetingsModel"));
|
|
393
|
+
exports.homeWorkModel = __importStar(require("./models/psql/homeWorkModel"));
|
|
394
|
+
exports.instituteEntityModel = __importStar(require("./models/psql/instituteEntityModel"));
|
|
395
|
+
exports.instituteEntityTypeModel = __importStar(require("./models/psql/instituteEntityTypeModel"));
|
|
396
|
+
exports.instituteModel = __importStar(require("./models/psql/instituteModel"));
|
|
397
|
+
exports.instituteSubscriptionPlanModel = __importStar(require("./models/psql/instituteSubscriptionPlanModel"));
|
|
398
|
+
exports.inventoryHistoryModel = __importStar(require("./models/psql/inventoryHistoryModel"));
|
|
399
|
+
exports.inventoryModel = __importStar(require("./models/psql/inventoryModel"));
|
|
400
|
+
exports.lectureHistoryModel = __importStar(require("./models/psql/lectureHistoryModel"));
|
|
401
|
+
exports.lectureModel = __importStar(require("./models/psql/lectureModel"));
|
|
402
|
+
exports.masterLeaveModel = __importStar(require("./models/psql/masterLeaveModel"));
|
|
403
|
+
exports.moduleFeatureModel = __importStar(require("./models/psql/moduleFeatureModel"));
|
|
404
|
+
exports.moduleModel = __importStar(require("./models/psql/moduleModel"));
|
|
405
|
+
exports.offerModel = __importStar(require("./models/psql/offerModel"));
|
|
406
|
+
exports.paymentTermsModel = __importStar(require("./models/psql/paymentTermsModel"));
|
|
407
|
+
exports.pdcChequeModel = __importStar(require("./models/psql/pdcChequeModel"));
|
|
408
|
+
exports.pdcHistoryModel = __importStar(require("./models/psql/pdcHistoryModel"));
|
|
409
|
+
exports.pincodeModel = __importStar(require("./models/psql/pincodeModel"));
|
|
410
|
+
exports.productModel = __importStar(require("./models/psql/productModel"));
|
|
411
|
+
exports.projectAssessmentOptionModel = __importStar(require("./models/psql/projectAssessmentOptionModel"));
|
|
412
|
+
exports.roleModel = __importStar(require("./models/psql/roleModel"));
|
|
413
|
+
exports.rulesRegulationModel = __importStar(require("./models/psql/rulesRegulationModel"));
|
|
414
|
+
exports.schoolFeeCollectionModel = __importStar(require("./models/psql/schoolFeeCollectionModel"));
|
|
415
|
+
exports.schoolOfferModel = __importStar(require("./models/psql/schoolOfferModel"));
|
|
416
|
+
exports.sendNotificationModel = __importStar(require("./models/psql/sendNotificationModel"));
|
|
417
|
+
exports.slotModel = __importStar(require("./models/psql/slotModel"));
|
|
418
|
+
exports.stateModel = __importStar(require("./models/psql/stateModel"));
|
|
419
|
+
exports.subjectHasFeeModel = __importStar(require("./models/psql/subjectHasFeeModel"));
|
|
420
|
+
exports.subjectHasPayFeeHistoryModel = __importStar(require("./models/psql/subjectHasPayFeeHistoryModel"));
|
|
421
|
+
exports.syllabusModel = __importStar(require("./models/psql/syllabusModel"));
|
|
422
|
+
exports.testimonialModel = __importStar(require("./models/psql/testimonialModel"));
|
|
423
|
+
exports.toDoModel = __importStar(require("./models/psql/toDoModel"));
|
|
424
|
+
exports.tokenModel = __importStar(require("./models/psql/tokenModel"));
|
|
425
|
+
exports.tripModel = __importStar(require("./models/psql/tripModel"));
|
|
426
|
+
exports.typeManagementModel = __importStar(require("./models/psql/typeManagementModel"));
|
|
427
|
+
exports.userBookAssessmentModel = __importStar(require("./models/psql/userBookAssessmentModel"));
|
|
428
|
+
exports.userFeeTypeByAccountModel = __importStar(require("./models/psql/userFeeTypeByAccountModel"));
|
|
429
|
+
exports.userFeeTypeModel = __importStar(require("./models/psql/userFeeTypeModel"));
|
|
430
|
+
exports.userHasAnnouncementModel = __importStar(require("./models/psql/userHasAnnouncementModel"));
|
|
431
|
+
exports.userHasBatchModel = __importStar(require("./models/psql/userHasBatchModel"));
|
|
432
|
+
exports.userHasCourseModel = __importStar(require("./models/psql/userHasCourseModel"));
|
|
433
|
+
exports.userHasDeviceModel = __importStar(require("./models/psql/userHasDeviceModel"));
|
|
434
|
+
exports.userHasFeeTermsModel = __importStar(require("./models/psql/userHasFeeTermsModel"));
|
|
435
|
+
exports.userHasFileModel = __importStar(require("./models/psql/userHasFileModel"));
|
|
436
|
+
exports.userHasHomeWorkModel = __importStar(require("./models/psql/userHasHomeWorkModel"));
|
|
437
|
+
exports.userHasInventoryHistoryModel = __importStar(require("./models/psql/userHasInventoryHistoryModel"));
|
|
438
|
+
exports.userHasInventoryModel = __importStar(require("./models/psql/userHasInventoryModel"));
|
|
439
|
+
exports.userHasLeaveHistoryModel = __importStar(require("./models/psql/userHasLeaveHistoryModel"));
|
|
440
|
+
exports.userHasLeaveModel = __importStar(require("./models/psql/userHasLeaveModel"));
|
|
441
|
+
exports.userHasOfferModel = __importStar(require("./models/psql/userHasOfferModel"));
|
|
442
|
+
exports.userHasParentModel = __importStar(require("./models/psql/userHasParentModel"));
|
|
443
|
+
exports.userHasRoleModel = __importStar(require("./models/psql/userHasRoleModel"));
|
|
444
|
+
exports.userHasRollNumberModel = __importStar(require("./models/psql/userHasRollNumberModel"));
|
|
445
|
+
exports.userHasStorageModel = __importStar(require("./models/psql/userHasStorageModel"));
|
|
446
|
+
exports.userHasSubjectFeeModel = __importStar(require("./models/psql/userHasSubjectFeeModel"));
|
|
447
|
+
exports.userLeaveRequestModel = __importStar(require("./models/psql/userLeaveRequestModel"));
|
|
448
|
+
exports.userModel = __importStar(require("./models/psql/userModel"));
|
|
449
|
+
exports.userPayoutDetailsModel = __importStar(require("./models/psql/userPayoutDetailsModel"));
|
|
450
|
+
exports.userPayoutHistoryModel = __importStar(require("./models/psql/userPayoutHistoryModel"));
|
|
451
|
+
exports.userPayoutModel = __importStar(require("./models/psql/userPayoutModel"));
|
|
452
|
+
exports.userProjectAssessmentOptionModel = __importStar(require("./models/psql/userProjectAssessmentOptionModel"));
|
|
453
|
+
exports.userRequiredStepsModel = __importStar(require("./models/psql/userRequiredStepsModel"));
|
|
454
|
+
exports.vehicleModel = __importStar(require("./models/psql/vehicleModel"));
|
|
455
|
+
exports.vendorManagementModel = __importStar(require("./models/psql/vendorManagementModel"));
|
|
456
|
+
exports.walletHistoryModel = __importStar(require("./models/psql/walletHistoryModel"));
|
|
457
|
+
exports.walletModel = __importStar(require("./models/psql/walletModel"));
|
|
458
|
+
exports.workingDayModel = __importStar(require("./models/psql/workingDayModel"));
|
|
459
|
+
exports.workingShiftModel = __importStar(require("./models/psql/workingShiftModel"));
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Model } from 'sequelize';
|
|
2
|
-
import { IUserHasOfferModelAttributes } from '../../interfaces/
|
|
2
|
+
import { IUserHasOfferModelAttributes } from '../../interfaces/userHasOfferInterface';
|
|
3
3
|
import { TUserHasOfferModelCreationAttributes } from '../../types/userHasOffer';
|
|
4
4
|
declare class UserHasOfferModel extends Model<IUserHasOfferModelAttributes, TUserHasOfferModelCreationAttributes> {
|
|
5
5
|
id: string;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { FilterQuery, UpdateQuery, Document, QueryOptions, PopulateOptions, MongooseUpdateQueryOptions, UpdateWriteOpResult, ClientSession, CreateOptions } from
|
|
2
|
-
import { TPaginationOptions } from
|
|
3
|
-
|
|
1
|
+
import { FilterQuery, UpdateQuery, Document, QueryOptions, PopulateOptions, MongooseUpdateQueryOptions, UpdateWriteOpResult, ClientSession, CreateOptions } from "mongoose";
|
|
2
|
+
import { TPaginationOptions } from "../../types/commonType";
|
|
3
|
+
interface IReadService<T extends Document> {
|
|
4
4
|
findAll(filter: FilterQuery<T>, options?: QueryOptions, populate?: PopulateOptions | PopulateOptions[]): Promise<T[]>;
|
|
5
5
|
findOne(filter: FilterQuery<T>, options?: QueryOptions, populate?: PopulateOptions | PopulateOptions[]): Promise<T | null>;
|
|
6
6
|
findById(id: string, options?: QueryOptions, populate?: PopulateOptions | PopulateOptions[]): Promise<T | null>;
|
|
7
7
|
findAllWithPagination(filter: FilterQuery<T>, options: QueryOptions, populate?: PopulateOptions | PopulateOptions[]): Promise<TPaginationOptions<T>>;
|
|
8
8
|
count(filter: FilterQuery<T>): Promise<number>;
|
|
9
9
|
}
|
|
10
|
-
|
|
10
|
+
interface IWriteService<T extends Document> {
|
|
11
11
|
update(filter: FilterQuery<T>, updateData: UpdateQuery<T>, options?: MongooseUpdateQueryOptions<T> & {
|
|
12
12
|
userId?: string;
|
|
13
13
|
session?: ClientSession;
|
|
@@ -25,7 +25,7 @@ export interface IWriteService<T extends Document> {
|
|
|
25
25
|
session?: ClientSession;
|
|
26
26
|
}): Promise<T[]>;
|
|
27
27
|
}
|
|
28
|
-
|
|
28
|
+
interface IDeleteService<T extends Document> {
|
|
29
29
|
delete(filter: FilterQuery<T>, options?: MongooseUpdateQueryOptions<T> & {
|
|
30
30
|
userId?: string;
|
|
31
31
|
session?: ClientSession;
|
|
@@ -33,3 +33,4 @@ export interface IDeleteService<T extends Document> {
|
|
|
33
33
|
}
|
|
34
34
|
export interface IMongooseCommonService<T extends Document> extends IReadService<T>, IWriteService<T>, IDeleteService<T> {
|
|
35
35
|
}
|
|
36
|
+
export {};
|
|
@@ -1,20 +1,21 @@
|
|
|
1
|
-
import { FindOptions, WhereOptions, UpdateOptions, BulkCreateOptions, DestroyOptions, CreateOptions, Identifier, Model, UpsertOptions, CountOptions } from
|
|
2
|
-
import { TPaginationOptions } from
|
|
3
|
-
|
|
4
|
-
findAll(where: WhereOptions<T[
|
|
5
|
-
findOne(where: WhereOptions<T[
|
|
6
|
-
findByPk(identifier: Identifier, options?: FindOptions<T[
|
|
7
|
-
findAllWithPagination(where: WhereOptions<T[
|
|
8
|
-
count(where: WhereOptions<T[
|
|
1
|
+
import { FindOptions, WhereOptions, UpdateOptions, BulkCreateOptions, DestroyOptions, CreateOptions, Identifier, Model, UpsertOptions, CountOptions } from "sequelize";
|
|
2
|
+
import { TPaginationOptions } from "../../types/commonType";
|
|
3
|
+
interface IReadService<T extends Model> {
|
|
4
|
+
findAll(where: WhereOptions<T["_attributes"]>, options?: FindOptions<T["_attributes"]>): Promise<T["_attributes"][]>;
|
|
5
|
+
findOne(where: WhereOptions<T["_attributes"]>, options?: FindOptions<T["_attributes"]>): Promise<T["_attributes"] | null>;
|
|
6
|
+
findByPk(identifier: Identifier, options?: FindOptions<T["_attributes"]>): Promise<T["_attributes"] | null>;
|
|
7
|
+
findAllWithPagination(where: WhereOptions<T["_attributes"]>, options?: FindOptions<T["_attributes"]>): Promise<TPaginationOptions<T["_attributes"]>>;
|
|
8
|
+
count(where: WhereOptions<T["_attributes"]>, options?: CountOptions<T["_attributes"]>): Promise<number>;
|
|
9
9
|
}
|
|
10
|
-
|
|
11
|
-
update(where: WhereOptions<T[
|
|
12
|
-
upsert(conflictWhere: WhereOptions<T[
|
|
13
|
-
create(createData: T[
|
|
14
|
-
bulkCreate(createData: T[
|
|
10
|
+
interface IWriteService<T extends Model> {
|
|
11
|
+
update(where: WhereOptions<T["_attributes"]>, updateData: Partial<T["_attributes"]>, options?: Partial<UpdateOptions>): Promise<[number]>;
|
|
12
|
+
upsert(conflictWhere: WhereOptions<T["_attributes"]>, updateData: T["_creationAttributes"], options?: Partial<UpsertOptions>): Promise<[T["_attributes"], boolean | null]>;
|
|
13
|
+
create(createData: T["_creationAttributes"], options?: CreateOptions): Promise<T["_attributes"]>;
|
|
14
|
+
bulkCreate(createData: T["_creationAttributes"][], options?: BulkCreateOptions<T["_attributes"]>): Promise<T["_attributes"][]>;
|
|
15
15
|
}
|
|
16
|
-
|
|
17
|
-
delete(where: WhereOptions<T[
|
|
16
|
+
interface IDeleteService<T extends Model> {
|
|
17
|
+
delete(where: WhereOptions<T["_attributes"]>, options?: DestroyOptions<T["_attributes"]>): Promise<number>;
|
|
18
18
|
}
|
|
19
19
|
export interface ISequelizeCommonService<T extends Model> extends IReadService<T>, IWriteService<T>, IDeleteService<T> {
|
|
20
20
|
}
|
|
21
|
+
export {};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { IGenarateIdCardModelAttributes } from
|
|
2
|
-
export type
|
|
1
|
+
import { IGenarateIdCardModelAttributes } from "../interfaces/generateIdCardInterface";
|
|
2
|
+
export type TGenarateIdCardModelAttributes = Omit<IGenarateIdCardModelAttributes, "id">;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { Optional } from 'sequelize';
|
|
2
|
-
import { IUserHasOfferModelAttributes } from '../interfaces/
|
|
2
|
+
import { IUserHasOfferModelAttributes } from '../interfaces/userHasOfferInterface';
|
|
3
3
|
export type TUserHasOfferModelCreationAttributes = Optional<IUserHasOfferModelAttributes, 'id'>;
|
package/package.json
CHANGED
|
File without changes
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
File without changes
|
|
File without changes
|