@chevre/domain 27.1.0-alpha.4 → 27.1.0-alpha.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.
@@ -102,8 +102,7 @@ class AdminEventRepo {
102
102
  bulkWriteOps.push({ updateOne });
103
103
  }
104
104
  else {
105
- const { id, coaInfo, description, // eslint-disable-line @typescript-eslint/no-unused-vars
106
- maximumAttendeeCapacity, remainingAttendeeCapacity, checkInCount, attendeeCount, aggregateReservation, // eslint-disable-line @typescript-eslint/no-unused-vars
105
+ const { id: __id, coaInfo: _coaInfo, description: _description, maximumAttendeeCapacity, remainingAttendeeCapacity, checkInCount, attendeeCount, aggregateReservation, // eslint-disable-line @typescript-eslint/no-unused-vars
107
106
  ...setOnInsertFields } = $set;
108
107
  const setOnInsert = {
109
108
  ...setOnInsertFields,
@@ -24,7 +24,7 @@ const schemaDefinition = {
24
24
  identifier: String,
25
25
  name: mongoose_1.SchemaTypes.Mixed,
26
26
  additionalProperty: mongoose_1.SchemaTypes.Mixed,
27
- description: mongoose_1.SchemaTypes.Mixed,
27
+ // description: SchemaTypes.Mixed, // discontinue(2026-09-04~)
28
28
  doorTime: Date,
29
29
  endDate: Date,
30
30
  eventStatus: String,
@@ -40,17 +40,6 @@ const schemaDefinition = {
40
40
  aggregateReservation: mongoose_1.SchemaTypes.Mixed,
41
41
  aggregateOffer: mongoose_1.SchemaTypes.Mixed,
42
42
  coaInfo: mongoose_1.SchemaTypes.Mixed
43
- // ↓discontinue EventSeries(2024-09-17~)
44
- // alternateName: SchemaTypes.Mixed,
45
- // alternativeHeadline: SchemaTypes.Mixed,
46
- // duration: String,
47
- // headline: SchemaTypes.Mixed,
48
- // workPerformed: SchemaTypes.Mixed,
49
- // videoFormat: SchemaTypes.Mixed,
50
- // soundFormat: SchemaTypes.Mixed,
51
- // subtitleLanguage: SchemaTypes.Mixed,
52
- // dubLanguage: SchemaTypes.Mixed,
53
- // kanaName: String,
54
43
  };
55
44
  const schemaOptions = {
56
45
  autoIndex: settings_1.MONGO_AUTO_INDEX,
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "dependencies": {
12
12
  "@aws-sdk/client-cognito-identity-provider": "3.1090.0",
13
13
  "@aws-sdk/credential-providers": "3.1090.0",
14
- "@chevre/factory": "10.5.0-alpha.2",
14
+ "@chevre/factory": "10.5.0-alpha.3",
15
15
  "@motionpicture/coa-service": "10.0.0",
16
16
  "@motionpicture/gmo-service": "6.1.0-alpha.0",
17
17
  "@sendgrid/client": "8.1.4",
@@ -88,5 +88,5 @@
88
88
  "postversion": "git push origin --tags",
89
89
  "prepublishOnly": "npm run clean && npm run build"
90
90
  },
91
- "version": "27.1.0-alpha.4"
91
+ "version": "27.1.0-alpha.5"
92
92
  }