@kipicore/dbcore 1.1.157 → 1.1.159
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/constants/app.d.ts
CHANGED
|
@@ -941,7 +941,7 @@ export declare enum COMPETITION_TYPE_CATEGORY {
|
|
|
941
941
|
CREATIVE_INTERESTS = "CREATIVE_INTERESTS",
|
|
942
942
|
SPORT = "SPORT",
|
|
943
943
|
CULTURAL = "CULTURAL",
|
|
944
|
-
|
|
944
|
+
ACADEMIC = "ACADEMIC"
|
|
945
945
|
}
|
|
946
946
|
export declare enum CAMPUS_CARNIVAL_STATUS {
|
|
947
947
|
PENDING = "PENDING",
|
package/dist/constants/app.js
CHANGED
|
@@ -1184,7 +1184,7 @@ var COMPETITION_TYPE_CATEGORY;
|
|
|
1184
1184
|
COMPETITION_TYPE_CATEGORY["CREATIVE_INTERESTS"] = "CREATIVE_INTERESTS";
|
|
1185
1185
|
COMPETITION_TYPE_CATEGORY["SPORT"] = "SPORT";
|
|
1186
1186
|
COMPETITION_TYPE_CATEGORY["CULTURAL"] = "CULTURAL";
|
|
1187
|
-
COMPETITION_TYPE_CATEGORY["
|
|
1187
|
+
COMPETITION_TYPE_CATEGORY["ACADEMIC"] = "ACADEMIC";
|
|
1188
1188
|
})(COMPETITION_TYPE_CATEGORY || (exports.COMPETITION_TYPE_CATEGORY = COMPETITION_TYPE_CATEGORY = {}));
|
|
1189
1189
|
var CAMPUS_CARNIVAL_STATUS;
|
|
1190
1190
|
(function (CAMPUS_CARNIVAL_STATUS) {
|
|
@@ -812,7 +812,8 @@ export declare enum COMPETITION_USER_SUCCESS_MESSAGES {
|
|
|
812
812
|
CREATE_SUCCESS = "participants added successfully",
|
|
813
813
|
GET_SUCCESS = "participants retrieved successfully",
|
|
814
814
|
UPDATE_SUCCESS = "participants updated successfully",
|
|
815
|
-
DELETE_SUCCESS = "participants deleted successfully"
|
|
815
|
+
DELETE_SUCCESS = "participants deleted successfully",
|
|
816
|
+
GET_PARTICIPANT_ANALYTICS = "Participant analytics retrieved successfully"
|
|
816
817
|
}
|
|
817
818
|
export declare enum CLONE_LIST_SUCCESS_MESSAGES {
|
|
818
819
|
CREATE_SUCCESS = "Clone list added successfully",
|
|
@@ -946,6 +946,7 @@ var COMPETITION_USER_SUCCESS_MESSAGES;
|
|
|
946
946
|
COMPETITION_USER_SUCCESS_MESSAGES["GET_SUCCESS"] = "participants retrieved successfully";
|
|
947
947
|
COMPETITION_USER_SUCCESS_MESSAGES["UPDATE_SUCCESS"] = "participants updated successfully";
|
|
948
948
|
COMPETITION_USER_SUCCESS_MESSAGES["DELETE_SUCCESS"] = "participants deleted successfully";
|
|
949
|
+
COMPETITION_USER_SUCCESS_MESSAGES["GET_PARTICIPANT_ANALYTICS"] = "Participant analytics retrieved successfully";
|
|
949
950
|
})(COMPETITION_USER_SUCCESS_MESSAGES || (exports.COMPETITION_USER_SUCCESS_MESSAGES = COMPETITION_USER_SUCCESS_MESSAGES = {}));
|
|
950
951
|
var CLONE_LIST_SUCCESS_MESSAGES;
|
|
951
952
|
(function (CLONE_LIST_SUCCESS_MESSAGES) {
|
|
@@ -101,7 +101,7 @@ const CompetitionSchema = new mongoose_1.Schema({
|
|
|
101
101
|
},
|
|
102
102
|
rules: {
|
|
103
103
|
type: String,
|
|
104
|
-
required:
|
|
104
|
+
required: false,
|
|
105
105
|
},
|
|
106
106
|
maxGroupSize: {
|
|
107
107
|
type: Number,
|
|
@@ -142,7 +142,7 @@ const CompetitionSchema = new mongoose_1.Schema({
|
|
|
142
142
|
},
|
|
143
143
|
isNeedApproval: {
|
|
144
144
|
type: Boolean,
|
|
145
|
-
required:
|
|
145
|
+
required: false,
|
|
146
146
|
},
|
|
147
147
|
subCategory: {
|
|
148
148
|
type: String,
|
|
@@ -150,7 +150,7 @@ const CompetitionSchema = new mongoose_1.Schema({
|
|
|
150
150
|
},
|
|
151
151
|
academicCalendarId: {
|
|
152
152
|
type: String,
|
|
153
|
-
required:
|
|
153
|
+
required: false,
|
|
154
154
|
},
|
|
155
155
|
instituteId: {
|
|
156
156
|
type: String,
|
package/package.json
CHANGED