@kipicore/dbcore 1.1.559 → 1.1.560

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.
@@ -27,7 +27,6 @@ export interface IChapterIndexAttributes {
27
27
  export interface IAssignedUsersAttributes {
28
28
  userId: string;
29
29
  chapterIndexId: string;
30
- chapterNumber: number;
31
30
  status?: USER_CHAPTER_INDEX_STATUS;
32
31
  statusUpdatedAt?: Date;
33
32
  teachingTime?: number;
@@ -97,10 +97,6 @@ const assignedUsersSchema = new mongoose_1.Schema({
97
97
  type: String,
98
98
  required: true,
99
99
  },
100
- chapterNumber: {
101
- type: Number,
102
- required: false,
103
- },
104
100
  status: {
105
101
  type: String,
106
102
  enum: Object.values(app_1.USER_CHAPTER_INDEX_STATUS),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kipicore/dbcore",
3
- "version": "1.1.559",
3
+ "version": "1.1.560",
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",