@kipicore/dbcore 1.1.510 → 1.1.512

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.
@@ -1372,5 +1372,6 @@ export declare enum VIDEO_DIRECTION_TYPE {
1372
1372
  export declare enum FEE_SUBMISSION_STATUS {
1373
1373
  PENDING = "PENDING",
1374
1374
  ACCEPTED = "ACCEPTED",
1375
- NOT_ACCEPTED = "NOT_ACCEPTED"
1375
+ NOT_ACCEPTED = "NOT_ACCEPTED",
1376
+ RECEIVED = "RECEIVED"
1376
1377
  }
@@ -1669,4 +1669,5 @@ var FEE_SUBMISSION_STATUS;
1669
1669
  FEE_SUBMISSION_STATUS["PENDING"] = "PENDING";
1670
1670
  FEE_SUBMISSION_STATUS["ACCEPTED"] = "ACCEPTED";
1671
1671
  FEE_SUBMISSION_STATUS["NOT_ACCEPTED"] = "NOT_ACCEPTED";
1672
+ FEE_SUBMISSION_STATUS["RECEIVED"] = "RECEIVED";
1672
1673
  })(FEE_SUBMISSION_STATUS || (exports.FEE_SUBMISSION_STATUS = FEE_SUBMISSION_STATUS = {}));
@@ -99,7 +99,7 @@ const up = async (queryInterface, Sequelize) => {
99
99
  field: 'academic_calendar_id',
100
100
  },
101
101
  lectureCount: {
102
- type: DataTypes.INTEGER,
102
+ type: Sequelize.INTEGER,
103
103
  field: 'lecture_count',
104
104
  },
105
105
  createdBy: {
@@ -0,0 +1,2 @@
1
+ export function up(queryInterface: any, Sequelize: any): Promise<void>;
2
+ export function down(queryInterface: any): Promise<void>;
@@ -0,0 +1,196 @@
1
+ "use strict";
2
+ const up = async (queryInterface, Sequelize) => {
3
+ const tableName = 'fee_submission_track';
4
+ const tableExists = await queryInterface
5
+ .describeTable(tableName)
6
+ .then(() => true)
7
+ .catch(() => false);
8
+ if (!tableExists) {
9
+ await queryInterface.createTable(tableName, {
10
+ id: {
11
+ type: Sequelize.UUID,
12
+ defaultValue: Sequelize.UUIDV4,
13
+ allowNull: false,
14
+ primaryKey: true,
15
+ },
16
+ parentId: {
17
+ type: Sequelize.UUID,
18
+ allowNull: true,
19
+ field: 'parent_id',
20
+ },
21
+ collectorId: {
22
+ type: Sequelize.UUID,
23
+ allowNull: true,
24
+ field: 'collector_id',
25
+ },
26
+ submittedUserId: {
27
+ type: Sequelize.UUID,
28
+ allowNull: true,
29
+ field: 'submitted_user_id',
30
+ },
31
+ amount: {
32
+ type: Sequelize.INTEGER,
33
+ allowNull: true,
34
+ },
35
+ submittedDate: {
36
+ type: Sequelize.DATE,
37
+ allowNull: true,
38
+ field: 'submitted_date',
39
+ },
40
+ collectedDate: {
41
+ type: Sequelize.DATE,
42
+ allowNull: true,
43
+ field: 'collected_date',
44
+ },
45
+ status: {
46
+ type: Sequelize.STRING,
47
+ allowNull: true,
48
+ },
49
+ instituteId: {
50
+ type: Sequelize.UUID,
51
+ field: 'institute_id',
52
+ allowNull: true,
53
+ },
54
+ academicCalendarId: {
55
+ type: Sequelize.UUID,
56
+ field: 'academic_calendar_id',
57
+ allowNull: true,
58
+ },
59
+ createdBy: {
60
+ type: Sequelize.UUID,
61
+ allowNull: true,
62
+ field: 'created_by',
63
+ },
64
+ updatedBy: {
65
+ type: Sequelize.UUID,
66
+ allowNull: true,
67
+ field: 'updated_by',
68
+ },
69
+ deletedBy: {
70
+ type: Sequelize.UUID,
71
+ allowNull: true,
72
+ field: 'deleted_by',
73
+ },
74
+ createdAt: {
75
+ type: Sequelize.DATE,
76
+ allowNull: true,
77
+ field: 'created_at',
78
+ },
79
+ updatedAt: {
80
+ type: Sequelize.DATE,
81
+ allowNull: true,
82
+ field: 'updated_at',
83
+ },
84
+ deletedAt: {
85
+ type: Sequelize.DATE,
86
+ allowNull: true,
87
+ field: 'deleted_at',
88
+ },
89
+ });
90
+ }
91
+ else {
92
+ const tableDefinition = await queryInterface.describeTable(tableName);
93
+ const columnsToAdd = {
94
+ id: {
95
+ type: Sequelize.UUID,
96
+ defaultValue: Sequelize.UUIDV4,
97
+ allowNull: false,
98
+ primaryKey: true,
99
+ },
100
+ parentId: {
101
+ type: Sequelize.UUID,
102
+ allowNull: true,
103
+ field: 'parent_id',
104
+ },
105
+ collectorId: {
106
+ type: Sequelize.UUID,
107
+ allowNull: true,
108
+ field: 'collector_id',
109
+ },
110
+ submittedUserId: {
111
+ type: Sequelize.UUID,
112
+ allowNull: true,
113
+ field: 'submitted_user_id',
114
+ },
115
+ amount: {
116
+ type: Sequelize.INTEGER,
117
+ allowNull: true,
118
+ },
119
+ submittedDate: {
120
+ type: Sequelize.DATE,
121
+ allowNull: true,
122
+ field: 'submitted_date',
123
+ },
124
+ collectedDate: {
125
+ type: Sequelize.DATE,
126
+ allowNull: true,
127
+ field: 'collected_date',
128
+ },
129
+ status: {
130
+ type: Sequelize.STRING,
131
+ allowNull: true,
132
+ },
133
+ instituteId: {
134
+ type: Sequelize.UUID,
135
+ field: 'institute_id',
136
+ allowNull: true,
137
+ },
138
+ academicCalendarId: {
139
+ type: Sequelize.UUID,
140
+ field: 'academic_calendar_id',
141
+ allowNull: true,
142
+ },
143
+ createdBy: {
144
+ type: Sequelize.UUID,
145
+ allowNull: true,
146
+ field: 'created_by',
147
+ },
148
+ updatedBy: {
149
+ type: Sequelize.UUID,
150
+ allowNull: true,
151
+ field: 'updated_by',
152
+ },
153
+ deletedBy: {
154
+ type: Sequelize.UUID,
155
+ allowNull: true,
156
+ field: 'deleted_by',
157
+ },
158
+ createdAt: {
159
+ type: Sequelize.DATE,
160
+ allowNull: true,
161
+ field: 'created_at',
162
+ },
163
+ updatedAt: {
164
+ type: Sequelize.DATE,
165
+ allowNull: true,
166
+ field: 'updated_at',
167
+ },
168
+ deletedAt: {
169
+ type: Sequelize.DATE,
170
+ allowNull: true,
171
+ field: 'deleted_at',
172
+ },
173
+ };
174
+ for (const column of Object.keys(columnsToAdd)) {
175
+ const columnToAdd = columnsToAdd[column];
176
+ const tableColumn = columnToAdd.field || column;
177
+ if (!tableDefinition[tableColumn]) {
178
+ await queryInterface.addColumn(tableName, tableColumn, columnToAdd);
179
+ }
180
+ }
181
+ }
182
+ };
183
+ const down = async (queryInterface) => {
184
+ const tableName = 'fee_submission_track';
185
+ const tableExists = await queryInterface
186
+ .describeTable(tableName)
187
+ .then(() => true)
188
+ .catch(() => false);
189
+ if (tableExists) {
190
+ await queryInterface.dropTable(tableName);
191
+ }
192
+ };
193
+ module.exports = {
194
+ up,
195
+ down,
196
+ };
@@ -0,0 +1,14 @@
1
+ import { IDefaultAttributes } from './commonInterface';
2
+ import { FEE_SUBMISSION_STATUS } from '../constants';
3
+ export interface IFeeSubmissionTrackModelAttributes extends IDefaultAttributes {
4
+ id: string;
5
+ collectorId?: string;
6
+ amount: number;
7
+ status: FEE_SUBMISSION_STATUS;
8
+ instituteId?: string;
9
+ academicCalendarId?: string;
10
+ submittedUserId?: string;
11
+ parentId?: string;
12
+ submittedDate?: Date;
13
+ collectedDate?: Date;
14
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -202,3 +202,4 @@ export * from './institutePartnersInterface';
202
202
  export * from './feeSubmissionInterface';
203
203
  export * from './assignSubjectInterface';
204
204
  export * from './userHasFeeSubmissionInterface';
205
+ export * from './feeSubmissionTrackInterface';
@@ -218,3 +218,4 @@ __exportStar(require("./institutePartnersInterface"), exports);
218
218
  __exportStar(require("./feeSubmissionInterface"), exports);
219
219
  __exportStar(require("./assignSubjectInterface"), exports);
220
220
  __exportStar(require("./userHasFeeSubmissionInterface"), exports);
221
+ __exportStar(require("./feeSubmissionTrackInterface"), exports);
@@ -0,0 +1,24 @@
1
+ import { Model } from 'sequelize';
2
+ import { FEE_SUBMISSION_STATUS } from '../../constants/app';
3
+ import { IFeeSubmissionTrackModelAttributes } from '../../interfaces/feeSubmissionTrackInterface';
4
+ import { TFeeSubmissionTrackModelCreationAttributes } from '../../types/feeSubmissionTrackType';
5
+ declare class FeeSubmissionTrackModel extends Model<IFeeSubmissionTrackModelAttributes, TFeeSubmissionTrackModelCreationAttributes> {
6
+ id: string;
7
+ amount: number;
8
+ collectorId?: string;
9
+ instituteId?: string;
10
+ academicCalendarId?: string;
11
+ status: FEE_SUBMISSION_STATUS;
12
+ submittedUserId?: string;
13
+ parentId?: string;
14
+ submittedDate?: Date;
15
+ collectedDate?: Date;
16
+ createdBy?: string;
17
+ updatedBy?: string;
18
+ deletedBy?: string;
19
+ readonly createdAt: Date;
20
+ readonly deletedAt?: string;
21
+ readonly updatedAt: Date;
22
+ static associate(models: any): void;
23
+ }
24
+ export default FeeSubmissionTrackModel;
@@ -0,0 +1,118 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const sequelize_1 = require("sequelize");
4
+ const index_1 = require("./index");
5
+ class FeeSubmissionTrackModel extends sequelize_1.Model {
6
+ static associate(models) {
7
+ const { UserModel, InstituteModel, AcademicCalendarModel } = models;
8
+ FeeSubmissionTrackModel.hasMany(FeeSubmissionTrackModel, {
9
+ foreignKey: {
10
+ name: 'parentId',
11
+ allowNull: true,
12
+ field: 'parent_id',
13
+ },
14
+ as: 'feeSubmissionTrackChildren',
15
+ });
16
+ FeeSubmissionTrackModel.belongsTo(UserModel, {
17
+ foreignKey: { name: 'collectorId', allowNull: true, field: 'collector_id' },
18
+ as: 'feeSubmissionTrackCollector',
19
+ });
20
+ UserModel.hasMany(FeeSubmissionTrackModel, {
21
+ foreignKey: { name: 'collectorId', allowNull: true, field: 'collector_id' },
22
+ as: 'collectorOfFeeSubmissionTrack'
23
+ });
24
+ FeeSubmissionTrackModel.belongsTo(UserModel, {
25
+ foreignKey: { name: 'submittedUserId', allowNull: true, field: 'submitted_user_id' },
26
+ as: 'submittedByUser',
27
+ });
28
+ UserModel.hasMany(FeeSubmissionTrackModel, {
29
+ foreignKey: { name: 'submittedUserId', allowNull: true, field: 'submitted_user_id' },
30
+ as: 'userOfSubmittedFeeSubmission'
31
+ });
32
+ FeeSubmissionTrackModel.belongsTo(InstituteModel, {
33
+ foreignKey: { name: 'instituteId', allowNull: true, field: 'institute_id' },
34
+ as: 'feeSubmissionTrackInstitute',
35
+ });
36
+ InstituteModel.hasMany(FeeSubmissionTrackModel, {
37
+ foreignKey: { name: 'instituteId', allowNull: true, field: 'institute_id' },
38
+ as: 'instituteFeeSubmissionTrack',
39
+ });
40
+ FeeSubmissionTrackModel.belongsTo(UserModel, {
41
+ foreignKey: { name: 'createdBy', allowNull: true, field: 'created_by' },
42
+ as: 'createdByUser',
43
+ });
44
+ FeeSubmissionTrackModel.belongsTo(UserModel, {
45
+ foreignKey: { name: 'updatedBy', allowNull: true, field: 'updated_by' },
46
+ as: 'updatedByUser',
47
+ });
48
+ FeeSubmissionTrackModel.belongsTo(UserModel, {
49
+ foreignKey: { name: 'deletedBy', allowNull: true, field: 'deleted_by' },
50
+ as: 'deletedByUser',
51
+ });
52
+ FeeSubmissionTrackModel.belongsTo(AcademicCalendarModel, {
53
+ foreignKey: { name: 'academicCalendarId', allowNull: true, field: 'academic_calendar_id' },
54
+ as: 'acaCalFeeSubmissionTrack',
55
+ });
56
+ AcademicCalendarModel.hasMany(FeeSubmissionTrackModel, {
57
+ foreignKey: { name: 'academicCalendarId', allowNull: true, field: 'academic_calendar_id' },
58
+ as: 'feeSubmissionTrackAcaCal',
59
+ });
60
+ }
61
+ }
62
+ FeeSubmissionTrackModel.init({
63
+ id: {
64
+ type: sequelize_1.DataTypes.UUID,
65
+ defaultValue: sequelize_1.DataTypes.UUIDV4,
66
+ allowNull: false,
67
+ primaryKey: true,
68
+ },
69
+ collectorId: {
70
+ type: sequelize_1.DataTypes.UUID,
71
+ allowNull: true,
72
+ field: 'collector_id',
73
+ },
74
+ submittedUserId: {
75
+ type: sequelize_1.DataTypes.UUID,
76
+ allowNull: true,
77
+ field: 'submitted_user_id',
78
+ },
79
+ amount: {
80
+ type: sequelize_1.DataTypes.INTEGER,
81
+ allowNull: true,
82
+ },
83
+ parentId: {
84
+ type: sequelize_1.DataTypes.UUID,
85
+ allowNull: true,
86
+ field: 'parent_id',
87
+ },
88
+ submittedDate: {
89
+ type: sequelize_1.DataTypes.DATE,
90
+ allowNull: true,
91
+ field: 'submitted_date',
92
+ },
93
+ collectedDate: {
94
+ type: sequelize_1.DataTypes.DATE,
95
+ allowNull: true,
96
+ field: 'collected_date',
97
+ },
98
+ status: {
99
+ type: sequelize_1.DataTypes.STRING,
100
+ allowNull: true,
101
+ },
102
+ instituteId: {
103
+ type: sequelize_1.DataTypes.UUID,
104
+ allowNull: true,
105
+ field: 'institute_id',
106
+ },
107
+ academicCalendarId: {
108
+ type: sequelize_1.DataTypes.UUID,
109
+ field: 'academic_calendar_id',
110
+ allowNull: true,
111
+ },
112
+ }, {
113
+ modelName: 'FeeSubmissionTrackModel',
114
+ tableName: 'fee_submission_track',
115
+ timestamps: true,
116
+ sequelize: index_1.sequelize,
117
+ });
118
+ exports.default = FeeSubmissionTrackModel;
@@ -135,3 +135,4 @@ export { default as InstituteOwnershipHistoryModel } from './instituteOwnershipH
135
135
  export { default as InstitutePartnersModel } from './institutePartnersModel';
136
136
  export { default as AssignSubjectModel } from './assignSubjectModel';
137
137
  export { default as UserHasFeeSubmissionModel } from './userHasFeeSubmissionModel';
138
+ export { default as FeeSubmissionTrackModel } from './feeSubmissionTrackModel';
@@ -5,7 +5,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.ProjectAssessmentOptionModel = exports.ProductModel = exports.PincodeModel = exports.PdcHistoryModel = exports.PdcChequeModel = exports.OfferModel = exports.ModuleModel = exports.ModuleFeatureModel = exports.MasterLeaveModel = exports.LectureModel = exports.LectureHistoryModel = exports.InventoryModel = exports.InventoryHistoryModel = exports.InstituteSubscriptionPlanModel = exports.InstituteModel = exports.InstituteEntityTypeModel = exports.InstituteEntityModel = exports.HomeWorkModel = exports.GreetingsModel = exports.FloorManagementModel = exports.FileStorageModel = exports.FeeReminderSettingModel = exports.FeeReminderModel = 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.Sequelize = exports.db = exports.sequelize = void 0;
7
7
  exports.StudentLeaveRequestModel = exports.CloneListModel = exports.IncomeExpenseModel = exports.MaintenanceModel = exports.WorkOffDaysModel = exports.EntityWiseCalendarModel = exports.CampusModel = exports.LostFoundItemModel = exports.WorkingShiftModel = exports.WorkingDayModel = exports.WalletModel = exports.WalletHistoryModel = exports.VendorManagementModel = exports.VehicleModel = exports.UserRequiredStepsModel = exports.UserProjectAssessmentOptionModel = exports.UserPayoutModel = exports.UserModel = exports.UserLeaveRequestModel = exports.UserHasSubjectFeeModel = exports.UserHasStorageModel = exports.UserHasRollNumberModel = exports.UserHasRoleModel = exports.UserHasParentModel = exports.UserHasOfferModel = exports.UserHasLeaveModel = exports.UserHasLeaveHistoryModel = exports.UserHasInventoryModel = exports.UserHasInventoryHistoryModel = exports.UserHasHomeWorkModel = exports.UserHasFileModel = exports.UserHasDeviceModel = exports.UserHasCourseModel = exports.UserHasBatchModel = exports.UserHasAnnouncementModel = 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.RulesRegulationModel = exports.RoleModel = void 0;
8
- exports.UserHasFeeSubmissionModel = exports.AssignSubjectModel = exports.InstitutePartnersModel = exports.InstituteOwnershipHistoryModel = exports.UserHasPenaltyHistoryModel = exports.PastYearRecordModel = exports.PayoutTransactionHistoryModel = exports.AdditionalPayoutModel = exports.LoanEmiModel = exports.UserLoanModel = exports.NoticeboardModel = exports.UserPermissionModel = exports.RoleManagementModel = exports.PermissionModel = exports.DesignationModel = exports.AdditionalPayoutTypeModel = exports.VisitorBookModel = exports.PostalDispatchModel = exports.CallRegisterModel = exports.UserHasOfferAndDiscountModel = exports.UserAcceptedTermsAndCondition = exports.SubjectInternalMarkModel = exports.InternalMarkModel = exports.TermsAndConditionModel = exports.FeeType1Model = exports.StudentFeeTermsModel = exports.UserHasPenaltyModel = exports.PenaltyModel = exports.ClassRoomCollectionModel = exports.ClassRoomEventModel = exports.StudentFeeTypeCollectionModel = exports.SchoolFeeTermsModel = exports.StudentFeeHistoryModel = exports.StudentFeeCollectionModel = exports.UserDirectoryModel = void 0;
8
+ exports.FeeSubmissionTrackModel = exports.UserHasFeeSubmissionModel = exports.AssignSubjectModel = exports.InstitutePartnersModel = exports.InstituteOwnershipHistoryModel = exports.UserHasPenaltyHistoryModel = exports.PastYearRecordModel = exports.PayoutTransactionHistoryModel = exports.AdditionalPayoutModel = exports.LoanEmiModel = exports.UserLoanModel = exports.NoticeboardModel = exports.UserPermissionModel = exports.RoleManagementModel = exports.PermissionModel = exports.DesignationModel = exports.AdditionalPayoutTypeModel = exports.VisitorBookModel = exports.PostalDispatchModel = exports.CallRegisterModel = exports.UserHasOfferAndDiscountModel = exports.UserAcceptedTermsAndCondition = exports.SubjectInternalMarkModel = exports.InternalMarkModel = exports.TermsAndConditionModel = exports.FeeType1Model = exports.StudentFeeTermsModel = exports.UserHasPenaltyModel = exports.PenaltyModel = exports.ClassRoomCollectionModel = exports.ClassRoomEventModel = exports.StudentFeeTypeCollectionModel = exports.SchoolFeeTermsModel = exports.StudentFeeHistoryModel = exports.StudentFeeCollectionModel = exports.UserDirectoryModel = void 0;
9
9
  const sequelize_1 = require("sequelize");
10
10
  Object.defineProperty(exports, "Sequelize", { enumerable: true, get: function () { return sequelize_1.Sequelize; } });
11
11
  const postgresConfig = require('../../configs/postgresConfig');
@@ -364,3 +364,5 @@ var assignSubjectModel_1 = require("./assignSubjectModel");
364
364
  Object.defineProperty(exports, "AssignSubjectModel", { enumerable: true, get: function () { return __importDefault(assignSubjectModel_1).default; } });
365
365
  var userHasFeeSubmissionModel_1 = require("./userHasFeeSubmissionModel");
366
366
  Object.defineProperty(exports, "UserHasFeeSubmissionModel", { enumerable: true, get: function () { return __importDefault(userHasFeeSubmissionModel_1).default; } });
367
+ var feeSubmissionTrackModel_1 = require("./feeSubmissionTrackModel");
368
+ Object.defineProperty(exports, "FeeSubmissionTrackModel", { enumerable: true, get: function () { return __importDefault(feeSubmissionTrackModel_1).default; } });
@@ -0,0 +1,3 @@
1
+ import { Optional } from 'sequelize';
2
+ import { IFeeSubmissionTrackModelAttributes } from '../interfaces/feeSubmissionTrackInterface';
3
+ export type TFeeSubmissionTrackModelCreationAttributes = Optional<IFeeSubmissionTrackModelAttributes, 'id'>;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -192,3 +192,4 @@ export * from './institutePartnersType';
192
192
  export * from './feeSubmissionType';
193
193
  export * from './assignFileType';
194
194
  export * from './userHasFeeSubmissionType';
195
+ export * from './feeSubmissionTrackType';
@@ -208,3 +208,4 @@ __exportStar(require("./institutePartnersType"), exports);
208
208
  __exportStar(require("./feeSubmissionType"), exports);
209
209
  __exportStar(require("./assignFileType"), exports);
210
210
  __exportStar(require("./userHasFeeSubmissionType"), exports);
211
+ __exportStar(require("./feeSubmissionTrackType"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kipicore/dbcore",
3
- "version": "1.1.510",
3
+ "version": "1.1.512",
4
4
  "description": "Reusable DB core package with Postgres, MongoDB, models, services, interfaces, and types",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",