@chevre/domain 23.2.0-alpha.17 → 23.2.0-alpha.18

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.
@@ -0,0 +1,28 @@
1
+ // tslint:disable:no-console
2
+ import * as mongoose from 'mongoose';
3
+
4
+ import { chevre } from '../../../../lib/index';
5
+
6
+ const project = { id: String(process.env.PROJECT_ID) };
7
+
8
+ async function main() {
9
+ await mongoose.connect(<string>process.env.MONGOLAB_URI, { autoIndex: false });
10
+
11
+ const sectionRepo = await chevre.repository.place.Section.createInstance(mongoose.connection);
12
+
13
+ const sections = await sectionRepo.findSections({
14
+ limit: 10,
15
+ page: 1,
16
+ project: { id: { $eq: project.id } },
17
+ containedInPlace: {
18
+ branchCode: { $eq: '10' },
19
+ containedInPlace: { id: { $eq: '5bfb841d5a78d7948369979a' } }
20
+ }
21
+ });
22
+ console.log(sections);
23
+ console.log(sections.length);
24
+ }
25
+
26
+ main()
27
+ .then(console.log)
28
+ .catch(console.error);
@@ -0,0 +1,33 @@
1
+ // tslint:disable:no-console
2
+ import * as mongoose from 'mongoose';
3
+
4
+ import { chevre } from '../../../../lib/index';
5
+
6
+ async function main() {
7
+ await mongoose.connect(<string>process.env.MONGOLAB_URI, { autoIndex: false });
8
+
9
+ const roleRepo = await chevre.repository.Role.createInstance(mongoose.connection);
10
+
11
+ const roleNames = [
12
+ // chevre.factory.role.organizationRole.RoleName.InventoryManager,
13
+ // chevre.factory.role.organizationRole.RoleName.SellersOwner,
14
+ // chevre.factory.role.organizationRole.RoleName.SellersInventoryManager,
15
+ chevre.factory.role.organizationRole.RoleName.TicketClerk
16
+ ];
17
+ const permissions = [
18
+ 'admin.sellers.rooms.read'
19
+ ];
20
+ for (const roleName of roleNames) {
21
+ for (const permission of permissions) {
22
+ const result = await roleRepo.addPermissionIfNotExists({
23
+ roleName: { $eq: roleName },
24
+ permission
25
+ });
26
+ console.log('permission added.', result, roleName);
27
+ }
28
+ }
29
+ }
30
+
31
+ main()
32
+ .then()
33
+ .catch(console.error);
@@ -0,0 +1,33 @@
1
+ // tslint:disable:no-console
2
+ import * as mongoose from 'mongoose';
3
+
4
+ import { chevre } from '../../../../lib/index';
5
+
6
+ async function main() {
7
+ await mongoose.connect(<string>process.env.MONGOLAB_URI, { autoIndex: false });
8
+
9
+ const roleRepo = await chevre.repository.Role.createInstance(mongoose.connection);
10
+
11
+ const roleNames = [
12
+ chevre.factory.role.organizationRole.RoleName.InventoryManager,
13
+ chevre.factory.role.organizationRole.RoleName.SellersOwner,
14
+ chevre.factory.role.organizationRole.RoleName.SellersInventoryManager
15
+ // chevre.factory.role.organizationRole.RoleName.TicketClerk
16
+ ];
17
+ const permissions = [
18
+ 'admin.sellers.rooms.*'
19
+ ];
20
+ for (const roleName of roleNames) {
21
+ for (const permission of permissions) {
22
+ const result = await roleRepo.addPermissionIfNotExists({
23
+ roleName: { $eq: roleName },
24
+ permission
25
+ });
26
+ console.log('permission added.', result, roleName);
27
+ }
28
+ }
29
+ }
30
+
31
+ main()
32
+ .then()
33
+ .catch(console.error);
@@ -20,99 +20,6 @@ class AggregateOrderRepo {
20
20
  constructor(connection) {
21
21
  this.aggregateOrderModel = connection.model(aggregateOrder_1.modelName, (0, aggregateOrder_1.createSchema)());
22
22
  }
23
- // public static CREATE_MONGO_CONDITIONS(
24
- // conditions: ISearchConditions
25
- // ): IMatchStage[] {
26
- // const matchStages: IMatchStage[] = [];
27
- // const projectIdEq = conditions.project?.id?.$eq;
28
- // if (typeof projectIdEq === 'string') {
29
- // matchStages.push({
30
- // $match: { 'project.id': { $eq: projectIdEq } }
31
- // });
32
- // }
33
- // const typeOfEq = conditions.reservationFor?.typeOf;
34
- // if (typeof typeOfEq === 'string') {
35
- // matchStages.push({
36
- // $match: { 'reservationFor.typeOf': { $eq: typeOfEq } }
37
- // });
38
- // }
39
- // const idEq = conditions.reservationFor?.id?.$eq;
40
- // if (typeof idEq === 'string') {
41
- // matchStages.push({
42
- // $match: { 'reservationFor.id': { $eq: idEq } }
43
- // });
44
- // }
45
- // const idIn = conditions.reservationFor?.id?.$in;
46
- // if (Array.isArray(idIn)) {
47
- // matchStages.push({
48
- // $match: { 'reservationFor.id': { $in: idIn } }
49
- // });
50
- // }
51
- // const reservationForStartDateGte = conditions.reservationFor?.startFrom;
52
- // if (reservationForStartDateGte instanceof Date) {
53
- // matchStages.push({
54
- // $match: { 'reservationFor.startDate': { $gte: reservationForStartDateGte } }
55
- // });
56
- // }
57
- // const reservationForStartDateLte = conditions.reservationFor?.startThrough;
58
- // if (reservationForStartDateLte instanceof Date) {
59
- // matchStages.push({
60
- // $match: { 'reservationFor.startDate': { $lte: reservationForStartDateLte } }
61
- // });
62
- // }
63
- // return matchStages;
64
- // }
65
- // /**
66
- // * 予約集計を検索する
67
- // */
68
- // public async searchWithReservationForId(
69
- // params: ISearchConditions,
70
- // inclusion: ('aggregateOffer')[]
71
- // ): Promise<ISearchWithReservationForIdResult[]> {
72
- // const matchStages = AggregateReservationRepo.CREATE_MONGO_CONDITIONS(params);
73
- // let projectStage: { [field in IKeyOfProjection]?: AnyExpression } = {
74
- // _id: 0,
75
- // id: '$reservationFor.id'
76
- // };
77
- // if (Array.isArray(inclusion) && inclusion.length > 0) {
78
- // inclusion.forEach((field) => {
79
- // projectStage[field] = { $ifNull: [`$${field}`, '$false'] };
80
- // // projectStage[field] = 1;
81
- // });
82
- // } else {
83
- // projectStage = {
84
- // _id: 0,
85
- // id: '$reservationFor.id',
86
- // // aggregateEntranceGate: 1, // discontinue(2024-12-23~)
87
- // aggregateOffer: 1
88
- // };
89
- // }
90
- // const sortByStartDate = params.sort?.['reservationFor.startDate'];
91
- // const aggregate = this.aggregateReservationModel.aggregate<ISearchWithReservationForIdResult>([
92
- // ...matchStages,
93
- // ...(typeof sortByStartDate === 'number')
94
- // ? [{ $sort: { 'reservationFor.startDate': sortByStartDate } }]
95
- // : [],
96
- // // 現時点でreservationFor.idへのunique indexがないので、重複ドキュメント対応として、$group
97
- // {
98
- // $group: {
99
- // _id: '$reservationFor.id',
100
- // reservationFor: { $first: '$reservationFor' },
101
- // aggregateEntranceGate: { $first: '$aggregateEntranceGate' },
102
- // aggregateOffer: { $first: '$aggregateOffer' }
103
- // }
104
- // },
105
- // { $project: projectStage }
106
- // ]);
107
- // if (typeof params.limit === 'number' && params.limit > 0) {
108
- // const page: number = (typeof params.page === 'number' && params.page > 0) ? params.page : 1;
109
- // aggregate.limit(params.limit * page)
110
- // .skip(params.limit * (page - 1));
111
- // }
112
- // return aggregate
113
- // .option({ maxTimeMS: MONGO_MAX_TIME_MS })
114
- // .exec();
115
- // }
116
23
  save(filter, update) {
117
24
  return __awaiter(this, void 0, void 0, function* () {
118
25
  const { $set } = update;
@@ -5,7 +5,6 @@ type IMatchStage = PipelineStage.Match;
5
5
  export interface IUpdateAggregateReservationParams {
6
6
  $set: {
7
7
  aggregateOffer?: factory.event.screeningEvent.IAggregateOffer;
8
- aggregateEntranceGate?: factory.event.screeningEvent.IAggregateEntranceGate;
9
8
  };
10
9
  }
11
10
  type ISearchWithReservationForIdResult = Pick<IAggregateReservation, 'aggregateOffer'> & {
@@ -82,7 +82,6 @@ class AggregateReservationRepo {
82
82
  projectStage = {
83
83
  _id: 0,
84
84
  id: '$reservationFor.id',
85
- // aggregateEntranceGate: 1, // discontinue(2024-12-23~)
86
85
  aggregateOffer: 1
87
86
  };
88
87
  }
@@ -97,7 +96,6 @@ class AggregateReservationRepo {
97
96
  $group: {
98
97
  _id: '$reservationFor.id',
99
98
  reservationFor: { $first: '$reservationFor' },
100
- aggregateEntranceGate: { $first: '$aggregateEntranceGate' },
101
99
  aggregateOffer: { $first: '$aggregateOffer' }
102
100
  }
103
101
  },
@@ -11,7 +11,6 @@ const schemaDefinition = {
11
11
  project: { type: mongoose_1.SchemaTypes.Mixed, required: true },
12
12
  typeOf: { type: String, required: true },
13
13
  reservationFor: { type: mongoose_1.SchemaTypes.Mixed, required: true },
14
- // aggregateEntranceGate: SchemaTypes.Mixed, // discontinue(2024-12-23~)
15
14
  aggregateOffer: mongoose_1.SchemaTypes.Mixed
16
15
  };
17
16
  const schemaOptions = {
@@ -1,7 +1,8 @@
1
- import type { Connection } from 'mongoose';
1
+ import type { Connection, PipelineStage } from 'mongoose';
2
2
  import * as factory from '../../factory';
3
3
  type IScreeningRoomSectionWithoutContainsPlace = Omit<factory.place.screeningRoomSection.IPlace, 'containsPlace'>;
4
4
  type ICreatingSection = Pick<factory.place.screeningRoomSection.IPlace, 'additionalProperty' | 'branchCode' | 'name'>;
5
+ type IMatchStage = PipelineStage.Match;
5
6
  interface IUpdateOptions {
6
7
  project: {
7
8
  id: string;
@@ -31,6 +32,7 @@ export declare class SectionRepo {
31
32
  private readonly civicStructureModel;
32
33
  private readonly placeModel;
33
34
  constructor(connection: Connection);
35
+ static CREATE_SECTION_MONGO_CONDITIONS(searchConditions: Omit<factory.place.screeningRoomSection.ISearchConditions, '$projection' | 'limit' | 'page'>): IMatchStage[];
34
36
  createSection(screeningRoomSection: ICreatingSection, options: IUpdateOptions): Promise<IUpdateSectionResult>;
35
37
  /**
36
38
  * セクションの名称と追加特性を編集する
@@ -53,6 +55,11 @@ export declare class SectionRepo {
53
55
  };
54
56
  };
55
57
  }): Promise<IUpdateSectionResult>;
58
+ /**
59
+ * 最小限のprojectionでセクション検索を再定義
60
+ * 2026-01-08~
61
+ */
62
+ findSections(params: Omit<factory.place.screeningRoomSection.ISearchConditions, '$projection'>): Promise<Pick<factory.place.screeningRoomSection.IPlace, 'additionalProperty' | 'branchCode' | 'name'>[]>;
56
63
  searchScreeningRoomSections(searchConditions: factory.place.screeningRoomSection.ISearchConditions): Promise<IScreeningRoomSectionWithoutContainsPlace[]>;
57
64
  /**
58
65
  * ルーム指定のセクション検索として再定義(2025-12-07~)
@@ -23,6 +23,106 @@ class SectionRepo {
23
23
  this.placeModel = connection.model(place_1.modelName, (0, place_1.createSchema)());
24
24
  }
25
25
  // tslint:disable-next-line:max-func-body-length
26
+ static CREATE_SECTION_MONGO_CONDITIONS(searchConditions) {
27
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r;
28
+ const matchStages = [{ $match: { typeOf: { $eq: factory.placeType.ScreeningRoom } } }];
29
+ const projectIdEq = (_b = (_a = searchConditions.project) === null || _a === void 0 ? void 0 : _a.id) === null || _b === void 0 ? void 0 : _b.$eq;
30
+ if (typeof projectIdEq === 'string') {
31
+ matchStages.push({
32
+ $match: { 'project.id': { $eq: projectIdEq } }
33
+ });
34
+ }
35
+ const parentOrganizationIdEq = (_d = (_c = searchConditions.parentOrganization) === null || _c === void 0 ? void 0 : _c.id) === null || _d === void 0 ? void 0 : _d.$eq;
36
+ if (typeof parentOrganizationIdEq === 'string') {
37
+ matchStages.push({
38
+ $match: { 'parentOrganization.id': { $exists: true, $eq: parentOrganizationIdEq } }
39
+ });
40
+ }
41
+ // 施設ID
42
+ const movieTheaterIdEq = (_g = (_f = (_e = searchConditions.containedInPlace) === null || _e === void 0 ? void 0 : _e.containedInPlace) === null || _f === void 0 ? void 0 : _f.id) === null || _g === void 0 ? void 0 : _g.$eq;
43
+ if (typeof movieTheaterIdEq === 'string') {
44
+ matchStages.push({
45
+ $match: {
46
+ 'containedInPlace.id': { $exists: true, $eq: movieTheaterIdEq }
47
+ }
48
+ });
49
+ }
50
+ // 施設コード
51
+ const movieTheaterBranchCodeEq = (_k = (_j = (_h = searchConditions.containedInPlace) === null || _h === void 0 ? void 0 : _h.containedInPlace) === null || _j === void 0 ? void 0 : _j.branchCode) === null || _k === void 0 ? void 0 : _k.$eq;
52
+ if (typeof movieTheaterBranchCodeEq === 'string') {
53
+ matchStages.push({
54
+ $match: {
55
+ 'containedInPlace.branchCode': { $exists: true, $eq: movieTheaterBranchCodeEq }
56
+ }
57
+ });
58
+ }
59
+ // ルームコード
60
+ const containedInPlaceBranchCodeEq = (_m = (_l = searchConditions.containedInPlace) === null || _l === void 0 ? void 0 : _l.branchCode) === null || _m === void 0 ? void 0 : _m.$eq;
61
+ if (typeof containedInPlaceBranchCodeEq === 'string') {
62
+ matchStages.push({
63
+ $match: {
64
+ branchCode: { $eq: containedInPlaceBranchCodeEq }
65
+ }
66
+ });
67
+ }
68
+ // セクションコード
69
+ const sectionBranchCodeEq = (_o = searchConditions === null || searchConditions === void 0 ? void 0 : searchConditions.branchCode) === null || _o === void 0 ? void 0 : _o.$eq;
70
+ if (typeof sectionBranchCodeEq === 'string') {
71
+ matchStages.push({
72
+ $match: {
73
+ 'containsPlace.branchCode': {
74
+ $exists: true,
75
+ $eq: sectionBranchCodeEq
76
+ }
77
+ }
78
+ });
79
+ }
80
+ const nameCodeRegex = (_p = searchConditions.name) === null || _p === void 0 ? void 0 : _p.$regex;
81
+ if (typeof nameCodeRegex === 'string') {
82
+ matchStages.push({
83
+ $match: {
84
+ $or: [
85
+ {
86
+ 'containsPlace.name.ja': {
87
+ $exists: true,
88
+ $regex: new RegExp(nameCodeRegex)
89
+ }
90
+ },
91
+ {
92
+ 'containsPlace.name.en': {
93
+ $exists: true,
94
+ $regex: new RegExp(nameCodeRegex)
95
+ }
96
+ }
97
+ ]
98
+ }
99
+ });
100
+ }
101
+ const branchCodeRegex = (_q = searchConditions.branchCode) === null || _q === void 0 ? void 0 : _q.$regex;
102
+ if (typeof branchCodeRegex === 'string') {
103
+ matchStages.push({
104
+ $match: {
105
+ 'containsPlace.branchCode': {
106
+ $exists: true,
107
+ $regex: new RegExp(branchCodeRegex)
108
+ }
109
+ }
110
+ });
111
+ }
112
+ const additionalPropertyElemMatch = (_r = searchConditions.additionalProperty) === null || _r === void 0 ? void 0 : _r.$elemMatch;
113
+ if (additionalPropertyElemMatch !== undefined && additionalPropertyElemMatch !== null) {
114
+ matchStages.push({
115
+ $match: {
116
+ 'containsPlace.additionalProperty': {
117
+ $exists: true,
118
+ $elemMatch: additionalPropertyElemMatch
119
+ }
120
+ }
121
+ });
122
+ }
123
+ return matchStages;
124
+ }
125
+ // tslint:disable-next-line:max-func-body-length
26
126
  createSection(screeningRoomSection, options) {
27
127
  return __awaiter(this, void 0, void 0, function* () {
28
128
  const { project, parentOrganization, movieTheaterCode, roomCode } = options;
@@ -157,106 +257,43 @@ class SectionRepo {
157
257
  return doc.toObject();
158
258
  });
159
259
  }
160
- // tslint:disable-next-line:cyclomatic-complexity max-func-body-length
161
- searchScreeningRoomSections(searchConditions) {
260
+ /**
261
+ * 最小限のprojectionでセクション検索を再定義
262
+ * 2026-01-08~
263
+ */
264
+ findSections(params) {
162
265
  return __awaiter(this, void 0, void 0, function* () {
163
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
164
- const matchStages = [{ $match: { typeOf: { $eq: factory.placeType.ScreeningRoom } } }];
165
- const projectIdEq = (_b = (_a = searchConditions.project) === null || _a === void 0 ? void 0 : _a.id) === null || _b === void 0 ? void 0 : _b.$eq;
166
- if (typeof projectIdEq === 'string') {
167
- matchStages.push({
168
- $match: { 'project.id': { $eq: projectIdEq } }
169
- });
170
- }
171
- const parentOrganizationIdEq = (_d = (_c = searchConditions.parentOrganization) === null || _c === void 0 ? void 0 : _c.id) === null || _d === void 0 ? void 0 : _d.$eq;
172
- if (typeof parentOrganizationIdEq === 'string') {
173
- matchStages.push({
174
- $match: { 'parentOrganization.id': { $exists: true, $eq: parentOrganizationIdEq } }
175
- });
176
- }
177
- // 施設コード
178
- const movieTheaterBranchCodeEq = (_g = (_f = (_e = searchConditions.containedInPlace) === null || _e === void 0 ? void 0 : _e.containedInPlace) === null || _f === void 0 ? void 0 : _f.branchCode) === null || _g === void 0 ? void 0 : _g.$eq;
179
- if (typeof movieTheaterBranchCodeEq === 'string') {
180
- matchStages.push({
181
- $match: {
182
- 'containedInPlace.branchCode': {
183
- $exists: true,
184
- $eq: movieTheaterBranchCodeEq
185
- }
186
- }
187
- });
188
- }
189
- // ルームコード
190
- const containedInPlaceBranchCodeEq = (_j = (_h = searchConditions.containedInPlace) === null || _h === void 0 ? void 0 : _h.branchCode) === null || _j === void 0 ? void 0 : _j.$eq;
191
- if (typeof containedInPlaceBranchCodeEq === 'string') {
192
- matchStages.push({
193
- $match: {
194
- branchCode: {
195
- $eq: containedInPlaceBranchCodeEq
196
- }
197
- }
198
- });
199
- }
200
- // セクションコード
201
- const sectionBranchCodeEq = (_k = searchConditions === null || searchConditions === void 0 ? void 0 : searchConditions.branchCode) === null || _k === void 0 ? void 0 : _k.$eq;
202
- if (typeof sectionBranchCodeEq === 'string') {
203
- matchStages.push({
204
- $match: {
205
- 'containsPlace.branchCode': {
206
- $exists: true,
207
- $eq: sectionBranchCodeEq
208
- }
209
- }
210
- });
211
- }
212
- const nameCodeRegex = (_l = searchConditions.name) === null || _l === void 0 ? void 0 : _l.$regex;
213
- if (typeof nameCodeRegex === 'string') {
214
- matchStages.push({
215
- $match: {
216
- $or: [
217
- {
218
- 'containsPlace.name.ja': {
219
- $exists: true,
220
- $regex: new RegExp(nameCodeRegex)
221
- }
222
- },
223
- {
224
- 'containsPlace.name.en': {
225
- $exists: true,
226
- $regex: new RegExp(nameCodeRegex)
227
- }
228
- }
229
- ]
230
- }
231
- });
232
- }
233
- const branchCodeRegex = (_m = searchConditions.branchCode) === null || _m === void 0 ? void 0 : _m.$regex;
234
- if (typeof branchCodeRegex === 'string') {
235
- matchStages.push({
236
- $match: {
237
- 'containsPlace.branchCode': {
238
- $exists: true,
239
- $regex: new RegExp(branchCodeRegex)
240
- }
241
- }
242
- });
243
- }
244
- const additionalPropertyElemMatch = (_o = searchConditions.additionalProperty) === null || _o === void 0 ? void 0 : _o.$elemMatch;
245
- if (additionalPropertyElemMatch !== undefined && additionalPropertyElemMatch !== null) {
246
- matchStages.push({
247
- $match: {
248
- 'containsPlace.additionalProperty': {
249
- $exists: true,
250
- $elemMatch: additionalPropertyElemMatch
251
- }
266
+ const aggregate = this.placeModel.aggregate([
267
+ { $unwind: '$containsPlace' },
268
+ ...SectionRepo.CREATE_SECTION_MONGO_CONDITIONS(params),
269
+ {
270
+ $project: {
271
+ _id: 0,
272
+ branchCode: '$containsPlace.branchCode',
273
+ name: '$containsPlace.name',
274
+ additionalProperty: '$containsPlace.additionalProperty'
252
275
  }
253
- });
276
+ }
277
+ ]);
278
+ const { limit, page } = params;
279
+ if (typeof limit === 'number' && limit > 0) {
280
+ const pageMustBePositive = (typeof page === 'number' && page > 0) ? page : 1;
281
+ aggregate.skip(limit * (pageMustBePositive - 1))
282
+ .limit(limit);
254
283
  }
284
+ return aggregate
285
+ .option({ maxTimeMS: settings_1.MONGO_MAX_TIME_MS })
286
+ .exec();
287
+ });
288
+ }
289
+ searchScreeningRoomSections(searchConditions) {
290
+ return __awaiter(this, void 0, void 0, function* () {
291
+ var _a, _b;
255
292
  const aggregate = this.placeModel.aggregate([
256
293
  { $unwind: '$containsPlace' },
257
- ...matchStages,
294
+ ...SectionRepo.CREATE_SECTION_MONGO_CONDITIONS(searchConditions),
258
295
  {
259
- $project: Object.assign(Object.assign({ _id: 0, typeOf: '$containsPlace.typeOf', branchCode: '$containsPlace.branchCode', identifier: '$containsPlace.identifier', name: '$containsPlace.name', additionalProperty: '$containsPlace.additionalProperty' }, (((_p = searchConditions.$projection) === null || _p === void 0 ? void 0 : _p.containedInPlace) === 1)
296
+ $project: Object.assign(Object.assign({ _id: 0, typeOf: '$containsPlace.typeOf', branchCode: '$containsPlace.branchCode', identifier: '$containsPlace.identifier', name: '$containsPlace.name', additionalProperty: '$containsPlace.additionalProperty' }, (((_a = searchConditions.$projection) === null || _a === void 0 ? void 0 : _a.containedInPlace) === 1)
260
297
  ? {
261
298
  containedInPlace: {
262
299
  typeOf: '$typeOf',
@@ -270,7 +307,7 @@ class SectionRepo {
270
307
  }
271
308
  }
272
309
  }
273
- : undefined), (((_q = searchConditions.$projection) === null || _q === void 0 ? void 0 : _q.seatCount) === 1)
310
+ : undefined), (((_b = searchConditions.$projection) === null || _b === void 0 ? void 0 : _b.seatCount) === 1)
274
311
  ? {
275
312
  seatCount: {
276
313
  $cond: {
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "dependencies": {
12
12
  "@aws-sdk/client-cognito-identity-provider": "3.600.0",
13
13
  "@aws-sdk/credential-providers": "3.600.0",
14
- "@chevre/factory": "5.4.0-alpha.10",
14
+ "@chevre/factory": "5.4.0-alpha.12",
15
15
  "@cinerino/sdk": "12.12.1",
16
16
  "@motionpicture/coa-service": "9.6.0",
17
17
  "@motionpicture/gmo-service": "5.4.0-alpha.1",
@@ -116,5 +116,5 @@
116
116
  "postversion": "git push origin --tags",
117
117
  "prepublishOnly": "npm run clean && npm run build && npm test && npm run doc"
118
118
  },
119
- "version": "23.2.0-alpha.17"
119
+ "version": "23.2.0-alpha.18"
120
120
  }